元件的本地註冊
元件可以全域性或本地註冊(繫結到另一個特定元件)。
var Child = Vue.extend({
// ...
})
var Parent = Vue.extend({
template: '...',
components: {
'my-component': Child
}
})
Thiw new component()
只能在 Parent 元件的範圍(模板)中使用。
元件可以全域性或本地註冊(繫結到另一個特定元件)。
var Child = Vue.extend({
// ...
})
var Parent = Vue.extend({
template: '...',
components: {
'my-component': Child
}
})
Thiw new component()
只能在 Parent 元件的範圍(模板)中使用。