babel.config.js 324 B

123456789101112131415
  1. module.exports = {
  2. presets: ['@vue/cli-plugin-babel/preset'],
  3. // 自动按需引入vant组件
  4. plugins: [
  5. [
  6. 'import',
  7. {
  8. libraryName: 'vant',
  9. libraryDirectory: 'es',
  10. style: true,
  11. },
  12. 'vant',
  13. ],
  14. ],
  15. }