这篇文章主要为大家详细介绍了关于vue编译版本引入的问题的解决,具有一定的参考价值,可以用来参考一下。
感兴趣的小伙伴,下面一起跟随四海网的小编两巴掌来看看吧!
下班过目遇到一个错误
[Vue warn]: You are using the runtime-only build of Vue where the template compiler is not available. Either pre-compile the templates into render functions, or use the compiler-included build.
根据错误提示说明,和搜索之后得出结论:是项目引入的vue编译版本不对
build/webpack.base.conf.js 并设置vue的alias别名,如下:
代码如下:
resolve: {
alias: {
vue: 'vue/dist/vue.esm.js'
}
}
打开src/main.js修改Vue对象初始化。
代码如下:
new Vue({
el: '#app',
router,
components: { App },
template: '<App/>'
})
改为
代码如下:
new Vue({
el: '#app',
router,
render: h => h(App)
})
原因是,使用 template属性,需要引入带编译器的完整版的vue.esm.js
而如果在.vue文件里面使用
代码如下:
<template>
<div></div>
</template>
<script>
export default {
name:'name1',
data() {
return {};
}
};
</script>
这种形式,然后使用import引入,则不需要完整版的vue.esm.js,因为使用vue-loader时 *.vue文件会自动预编译成js。
对不同构建版本的解释(https://cn.vuejs.org/v2/guide/installation.html#%E5%AF%B9%E4%B8%8D%E5%90%8C%E6%9E%84%E5%BB%BA%E7%89%88%E6%9C%AC%E7%9A%84%E8%A7%A3%E9%87%8A)
理顺8个版本vue的区别(https://www.q1010.com/article/147538.htm)
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持四海网。
本文来自:http://www.q1010.com/184/6216-0.html
注:关于关于vue编译版本引入的问题的解决的内容就先介绍到这里,更多相关文章的可以留意四海网的其他信息。
关键词:vue.js
四海网收集整理一些常用的php代码,JS代码,数据库mysql等技术文章。