本文介绍了如何设置 vue-template-compiler 选项以及在哪里?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
无法理解如何更改空格选项
can't understand how to change whitespace options
是否应该在 webpack.js 中设置?const compiler = require('vue-template-compiler')
is it should set in webpack.js?const compiler = require('vue-template-compiler')
在自述文件中写入compiler.compile(template, [options]) ???
in readme writecompiler.compile(template, [options]) ???
但是template
字符串是什么意思?
but what is template
string mean?
我需要将空格选项设置为压缩"
I need set whitespace option to 'condense'
推荐答案
通常你编辑 vue.config.js
module.exports = {
chainWebpack: config => {
config.module
.rule('vue')
.use('vue-loader')
.loader('vue-loader')
.tap(options => {
options.compilerOptions = { whitespace: 'condense' };
return options;
});
}
}
这篇关于如何设置 vue-template-compiler 选项以及在哪里?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!