Vue中的“保留空白”选项不起作用。它正在生成带有大量空格的代码:
_vm._v(
"\n " +
_vm._s(_vm.object.created_by_full_name) +
"\n "
)
答案 0 :(得分:0)
在vue.config.js中放入以下内容
chainWebpack: config => {
config.module
.rule('vue')
.use('vue-loader')
.loader('vue-loader')
.tap(options => {
// modify the options...
options.compilerOptions = { whitespace: 'condense' };
return options;
});
},