vue-cli-plugin-pro-layout
v0.1.9
Published
@vue/cli plugin to add @antd-vue/pro-layout
Downloads
211
Maintainers
Readme
vue-cli-plugin-antd
Usage
vue add antd
or
yarn add vue-cli-plugin-antd -D
npm install vue-cli-plugin-antd -D
vue invoke antd
PLUGIN OPTIONS
export type AntdPluginOption = {
/**
* @description 组件是否全量导入,还是模块化导入
* @default modularized
*/
importType?: 'full' | 'modularized';
/**
* @description 样式文件使用 less 或 css ,ture 加载 less 文件
* @default true
*/
style?: true | 'css';
/**
* @description 相关依赖版本
*/
version?: {
'ant-design-vue'?: string;
less?: string;
'less-loader'?: string;
'babel-plugin-import'?: string;
};
[key: string]: any;
};