全局一次性引用寫好的組件

全局一次性引用寫好的組件

咱們寫好了組件,接下去確定還要引入和使用。可是你寫的組件一旦多起來,在每個個地方都須要去引用是一件很麻煩的事情,因此咱們將一次性全局引入:

新建 components.js 文件 , 引入全部組件

important componentA from './componentA
important componentB from './componentB
important Vue from 'vue

const components = [componentA, componentB]

const install = function (value, opts = {}){
  components.map(component => {
    Vue.component(component.name, component)
  })
}

export defau;t install

在 main.js 進行導入

import components from './components.js'

Vue.use(components)

如此,即可在任意位置進行使用組件。

相關文章
相關標籤/搜索