相信不少人在用Vue使用別人的組件時,會用到 Vue.use()
。例如:Vue.use(VueRouter)
、Vue.use(MintUI)
。可是用 axios
時,就不須要用 Vue.use(axios)
,就能直接使用。那這是爲何吶?javascript
由於 axios
沒有 install
。
什麼意思呢?接下來咱們自定義一個須要 Vue.use()
的組件,也就是有 install
的組件,看完以後就明白了。vue
生成模版
vue init webpack-simple custom-global-component
custom-global-component 爲新建的文件夾名稱
而後一路回車
cd custom-global-component
進入該文件夾
npm install
安裝本次須要的模塊
npm run dev
運行項目
若是能正常打開,進行下一步java
這是當前項目目錄:webpack
1.建立以下圖中的文件夾和文件ios
2.在 Loading.vue 中定義一個組件web
<template> <div class="loading-box"> Loading... </div> </template>
3.在 index.js 中 引入 Loading.vue ,並導出npm
// 引入組件 import LoadingComponent from './loading.vue' // 定義 Loading 對象 const Loading={ // install 是默認的方法。當外界在 use 這個組件的時候,就會調用自己的 install 方法,同時傳一個 Vue 這個類的參數。 install:function(Vue){ Vue.component('Loading',LoadingComponent) } } // 導出 export default Loading
4.在 main.js 中引入 loading 文件下的 indexaxios
// 其中'./components/loading/index' 的 /index 能夠不寫,webpack會自動找到並加載 index 。若是是其餘的名字就須要寫上。 import Loading from './components/loading/index' // 這時須要 use(Loading),若是不寫 Vue.use()的話,瀏覽器會報錯,你們能夠試一下 Vue.use(Loading)
5.在App.vue裏面寫入定義好的組件標籤 <Loading></Loading>
瀏覽器
<template> <div id="app"> <h1>vue-loading</h1> <Loading></Loading> </div> </template>
6.看到這兒你們應該就明白了吧,用 axios
時,之因此不須要用 Vue.use(axios)
,就能直接使用,是由於開發者在封裝 axios
時,沒有寫 install
這一步。至於爲啥沒寫,那就不得而知了。app