Vue.component( id, [definition] )
-
Arguments:
{String} id
{Function | Object} [definition]
-
Usage:
Register or retrieve a global component.
12345678// register an extended constructor
Vue.component(
'my-component'
, Vue.extend({
/* ... */
}))
// register an options object (automatically call Vue.extend)
Vue.component(
'my-component'
, {
/* ... */
})
// retrieve a registered component (always return constructor)
var
MyComponent = Vue.component(
'my-component'
)
-
See also: Components.
Please login to continue.