這次帶給大家vue註冊元件有幾種方法,使用vue註冊元件的注意事項有哪些,以下就是實戰案例,一起來看一下。
1、全域註冊(這種方式註冊元件必須在vue實例化之前宣告)
Vue.component('tag-name',{})
2 、局部註冊
var Child = { template: '<p>A custom component!</p>' } new Vue({ // ... components: { // <my-component> 将只在父模板可用 'my-component': Child } })
3、擴充實例
// 定义一个混合对象 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!"
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
#以上是vue註冊元件有幾種方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!