anta-element-ui-components
v0.1.81
Published
anta fila element-ui vue
Downloads
21
Readme
ANTA ELEMENT UI
基于 element-ui 定制主题
安装
npm i anta-element-ui-components
使用
import 'anta-element-ui-components/src/scss/index.scss';
import AntaElementUI from 'anta-element-ui-components';
Vue.use(AntaElementUI);
// vue.config.js
module.exports = {
filenameHashing: true,
runtimeCompiler: true,
transpileDependencies: ['anta-element-ui-components', 'element-ui'],
pages: {
index: {
entry: 'src/main.js',
template: 'public/index.html',
filename: 'index.html',
title: 'Anta Design',
// 提取出来的通用 chunk 和 vendor chunk。
chunks: ['chunk-vendors', 'chunk-common', 'index']
}
}
};