Vue.component( id, [definition] )

Vue.component( id, [definition] )

Arguments:
    {string} id
    {Function | Object} [definition]

Usage:

Register or retrieve a global component. Registration also automatically sets the component’s name with the given id.

// 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
发布了133 篇原创文章 · 获赞 189 · 访问量 1万+

猜你喜欢

转载自blog.csdn.net/blog_programb/article/details/105603358