mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-09-18 19:36:39 +08:00
17 lines
378 B
JavaScript
17 lines
378 B
JavaScript
|
||
module.exports = {
|
||
presets: [['@vue/cli-plugin-babel/preset', {useBuiltIns: 'usage', corejs: 3}]],
|
||
plugins:[
|
||
// vant-ui 按需引入,详情:https://github.com/ElementUI/babel-plugin-component
|
||
// [
|
||
// 'import',
|
||
// {
|
||
// libraryName: 'vant',
|
||
// libraryDirectory: 'es',
|
||
// style: true
|
||
// },
|
||
// 'vant'
|
||
// ]
|
||
]
|
||
};
|