1234567891011121314151617181920 |
- module.exports = {
- presets: ['@vue/cli-plugin-babel/preset'],
- plugins: [
- [
- 'component',
- {
- libraryName: 'element-ui',
- styleLibraryName: 'theme-chalk',
- },
- ],
- [
- 'import',
- {
- libraryName: 'vant',
- libraryDirectory: 'es',
- style: true,
- },
- ],
- ],
- };
|