亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

關于vue編譯版本引入的問題的解決

 更新時間:2018年09月17日 10:12:39   作者:飄飄然  
這篇文章主要介紹了關于vue編譯版本引入的問題的解決,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧

下班過目遇到一個錯誤

[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編譯版本不對

解決方案1

build/webpack.base.conf.js 并設置vue的alias別名,如下:

resolve: {
   alias: {
    vue: 'vue/dist/vue.esm.js'
   }
  }

解決方案2

打開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。

其實vuejs官網中已有明確說明

對不同構建版本的解釋(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的區(qū)別(http://chabaoo.cn/article/147538.htm

以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

相關文章

最新評論