升级部分所需package.json版本,如vue及相关ui
参考vue3项目升级
解决运行报错

  configureWebpack: {
    // webpack plugins
    plugins: [
      // Ignore all locale files of moment.js
      // new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/), 修改为
      new webpack.IgnorePlugin(
        {
          resourceRegExp: /^\.\/locale$/,
          contextRegExp: /moment$/
        }
      ),
  },



















