相信不少人在用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