Vue.component()

Vue.component( id, [definition] )

  • Arguments:

    • {String} id
    • {Function | Object} [definition]
  • Usage:

    Register or retrieve a global component.

    // 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.

doc_VueJS
2016-09-25 05:48:21
Comments
Leave a Comment

Please login to continue.