How to implement global registration and local registration in vue components

亚连
Release: 2018-06-02 16:52:26
Original
1983 people have browsed it

Below I will share with you an article on the implementation of global registration and local registration of vue components. It has a good reference value and I hope it will be helpful to everyone.

Global registration, the registered component needs to be registered before initializing the root instance;

Local registration, by using the component instance option to register, the component can only be used in another component or instance Available in domain:

Global components

js

Vue.component('tab-title',{ props:['title'], template:'
  • {{title}}
  • ' }) Vue.component('tab-content',{ props:['content'], template:'

    {{content}}

    ' })
    Copy after login

    Local component demo:

    html

    Copy after login

    js

    var app=new Vue({ el: '#app', components: { 'tab-title': { props:['info'],//接受父元素传递的参数 template:'
  • {{info}}
  • '//点击时传递通过$emit子元素传递给父元素调用 addactive方法(不能使用驼峰写法) }, 'tab-content':{ props:["content"], template:'

    {{content}}

    ' } }, methods:{ switchActive:function(index){ for(var i=0;i
    Copy after login

    The scope of the component instance is isolated. This means that the data of the parent component cannot be directly referenced in the template of the child component. To make the child component use the data of the parent component, we need to pass the props option of the child component.

    The child component must explicitly use the props option to declare the data it expects to obtain

    In the template, the data of the parent component must be dynamically bound to the child template. props, similar to binding to any normal HTMO properties. Just use v-bind. Whenever the data of the parent component changes, the change will also be passed to the child component:

    All vuejs components are extended vue instances

    Every Vue The instance will proxy all the attributes in the data attribute object of this instance

    All the properties and methods of the Vue instance itself are distinguished by starting with $, corresponding to Vue.set

    For example:

    vm.$data

    ##vm.$methods

    vm.$watch

    This is helpful to distinguish it from the data of the data attribute object

    Many instructions are Exists in the form of v-xxx:

    The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

    Related articles:

    Vue2.0 event broadcasting and reception (observer mode)

    vue2.0 installation style/css Loader method

    #iview table height dynamic setting method

    The above is the detailed content of How to implement global registration and local registration in vue components. For more information, please follow other related articles on the PHP Chinese website!

    source:php.cn
    Statement of this Website
    The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template
    About us Disclaimer Sitemap
    php.cn:Public welfare online PHP training,Help PHP learners grow quickly!