您好,登錄后才能下訂單哦!
這篇文章主要講解了“Vue.use如何自定義全局組件”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“Vue.use如何自定義全局組件”吧!
首先看下目前的項目結構:
webpack首先會加載main.js,所以我們在main的js里面引入。我以element ui來做對比說明
import Vue from 'vue' import App from './App.vue' // 引入element-ui組件 import ElementUi from 'element-ui' import 'element-ui/lib/theme-default/index.css' // 引入自定義組件。index.js是組件的默認入口 import Loading from '../components/loading' Vue.use(Loading); Vue.use(ElementUi); new Vue({ el: '#app', render: h => h(App) })
然后在Loading.vue里面定義自己的組件模板
<!-- 這里和普通組件的書寫一樣 --> <template> <div class="loading"> loading... </div> </template>
在index.js文件里面添加install方法
import MyLoading from './Loading.vue' // 這里是重點 const Loading = { install: function(Vue){ Vue.component('Loading',MyLoading) } } // 導出組件 export default Loading
接下來就是在App.Vue里面使用組件了,這個組件已經在main.js定義加載了
<template> <div id="app"> <!-- 使用element ui的組件 --> <el-button>默認按鈕</el-button> <!-- 使用自定義組件 --> <Loading></Loading> </div> </template>
Vue具體輕量級框架、簡單易學、雙向數據綁定、組件化、數據和結構的分離、虛擬DOM、運行速度快等優勢,Vue中頁面使用的是局部刷新,不用每次跳轉頁面都要請求所有數據和dom,可以大大提升訪問速度和用戶體驗。
感謝各位的閱讀,以上就是“Vue.use如何自定義全局組件”的內容了,經過本文的學習后,相信大家對Vue.use如何自定義全局組件這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。