您好,登錄后才能下訂單哦!
這篇文章主要介紹了vue.js循環引用組件報錯的解決方法,具有一定借鑒價值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
vue.js解決循環引用組件報錯的方法:首先打開項目,使用全局引入組件;然后在vue實例化前,在【main.js】里引入,代碼為【import selFile from './views/file/selFile.vue'】。
vue.js解決循環引用組件報錯的方法:
問題由來
最近在做項目的時候遇到使用循環組件,因為模式一樣,只有數據不一樣。按照普通組件調用格式來做的時候總是報錯,錯誤信息為[Vue warn]: Unknown custom element: <selfile> - did you register the component correctly? For recursive components, make sure to provide the "name" option.
解決方案
查詢了網上各種資料之后,發現是循環調用組件時,組件比vue實例后創建,官方文檔里寫組件必須先于實例化引入,所以說組件沒有正確的引入。
解決方式
解決的方式就是全局引入組件,并且在vue實例化前。
具體到我們項目中,就是在main.js里引入。
具體代碼如下main.js:
import Vue from 'vue' import App from './App' import router from './router' import store from './store'; import iView from 'iview'; import './styles/index.less' import {VTable,VPagination} from 'vue-easytable' import 'vue-easytable/libs/themes-base/index.css' import Axios from './utils/axiosPlugin' import './styles/button.css' import './styles/common.css' // require('./mock/mock') import selFile from './views/file/selFile.vue' Vue.use(iView); Vue.use(Axios); Vue.component(VTable.name, VTable) Vue.component(VPagination.name, VPagination) Vue.component("selFile",selFile) Vue.config.productionTip = false /* eslint-disable no-new */ new Vue({ el: '#app', store, router, components: { App }, template: '<App/>' })
用上面的方法全局引入組件就可以解決循環引用組件報錯的問題。
感謝你能夠認真閱讀完這篇文章,希望小編分享vue.js循環引用組件報錯的解決方法內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。