淘先锋技术网

首页 1 2 3 4 5 6 7

1、安装 babel-polyfill

cnpm  i babel-polyfill --save

2、main.js首行新增

3、babel.config.js

module.exports = {
  presets: [
    ['@vue/app', {
      useBuiltIns: 'entry'
    }
    ]
  ]
}