Vue注册组件的几种方式

全局注册

该方式注册组件必须在vue实例化之前声明

Vue.component('tag-name', {})

局部注册

var Child = {
  template: '<div>A custom component!</div>'
}
new Vue({
  // ...
  components: {
    // <my-component> 将只在父模板可用
    'my-component': Child
  }
})

扩展实例

// 定义一个混合对象
var myMixin = {
  created: function () {
    this.hello()
  },
  methods: {
    hello: function () {
      console.log('hello from mixin!')
    }
  }
}
// 定义一个使用混合对象的组件
var Component = Vue.extend({
  mixins: [myMixin]
})
var component = new Component() // -> "hello from mixin!"

版权声明:
作者:Joe.Ye
链接:https://www.appblog.cn/index.php/2023/03/12/several-ways-for-vue-to-register-components/
来源:APP全栈技术分享
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
打赏
海报
Vue注册组件的几种方式
全局注册 该方式注册组件必须在vue实例化之前声明 Vue.component('tag-name', {}) 局部注册 var Child = { template: '<div>A custom……
<<上一篇
下一篇>>
文章目录
关闭
目 录