欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

關(guān)于vue編譯版本引入的問題的解決

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

下班過目遇到一個(gè)錯(cuò)誤

[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.

根據(jù)錯(cuò)誤提示說明,和搜索之后得出結(jié)論:是項(xiàng)目引入的vue編譯版本不對(duì)

解決方案1

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

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

解決方案2

打開src/main.js修改Vue對(duì)象初始化。

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,因?yàn)槭褂胿ue-loader時(shí) *.vue文件會(huì)自動(dòng)預(yù)編譯成js。

其實(shí)vuejs官網(wǎng)中已有明確說明

對(duì)不同構(gòu)建版本的解釋(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

其他相關(guān)文章:

理順8個(gè)版本vue的區(qū)別(http://www.dbjr.com.cn/article/147538.htm

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論