https://github.com/vuejs/vue-...
根据下面的代码,这只是开发环境下编译的结果:
// development-only code if (!isProduction) { // add filename in dev output += 'Component.options.__file = ' + JSON.stringify(shortFilePath) + '\n' // check named exports output += 'if (Component.esModule && Object.keys(Component.esModule).some(function (key) {' + 'return key !== "default" && key.substr(0, 2) !== "__"' + '})) {' + 'console.error("named exports are not supported in *.vue files.")' + '}\n' // check functional components used with templates if (template) { output += 'if (Component.options.functional) {' + 'console.error("' + '[vue-loader] ' + fileName + ': functional components are not ' + 'supported with templates, they should use render functions.' + '")}\n' } }
建议使用 DefinePlugin 设置生产环境后再打包。
或者,直接使用 vue-cli 的 webpack 项目模板创建项目。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
暂无简介
文章 0 评论 0
接受
发布评论
评论(1)
https://github.com/vuejs/vue-...
根据下面的代码,这只是开发环境下编译的结果:
建议使用 DefinePlugin 设置生产环境后再打包。
或者,直接使用 vue-cli 的 webpack 项目模板创建项目。