Home  >  Article  >  Web Front-end  >  How to use vue components in practical projects

How to use vue components in practical projects

php中世界最好的语言
php中世界最好的语言Original
2018-06-08 17:21:101435browse

This time I will show you how to use vue components in practical projects, and what are the precautions for using vue components in practical projects. The following is a practical case, let's take a look.

1. Recursive component

#The component can call itself recursively in its template, just set the name option to the component. .

The example is as follows:

  

      

Vue.component('my-component19',{  name: 'my-component19', //其实当你利用 Vue.component 全局注册了一个组件,全局的ID会被自动设置为组件的name。  props: {   count: {    type: Number,    default: 1   }  },  template: '

' }); var app19 = new Vue({  el: '#app19' });

The rendering result is:

 

  

   

    

   

  

 

After setting the name, it can be used recursively in the component template. However, it should be noted that a Condition to limit the number of recursions, otherwise an error will be thrown: max stack size exceeded .

The recursive use of components can be used to develop some independent components with unknown hierarchical relationships, such as cascading selectors and tree controls.

2. Inline template

The template of the component is generally defined in the template option. Vue provides an inline template. Function, when using a component, use the inline-template attribute for the component tag, and the component will treat its content as a template instead of distributing it as content, which makes the template more flexible.

Examples are as follows:       

        

     

在父组件中定义子组件的模板

     

{{msg}}

    

      

Vue.component('my-component20',{  data: function(){   return {    msg: '在子组件声明的数据'   }  } }); var app20 = new Vue({  el: '#app20' });

3. Dynamic component

Vue.js provides a special element Used to dynamically mount different components, use the is attribute to select the component to be mounted.

Examples are as follows: ​​​​, it's time to consider performance issues, because loading all components at the beginning is unnecessary overhead.

Fortunately, Vue.js allows you to define a component as a factory function and dynamically parse the component. Vue. Only triggers the factory function when the component needs to be rendered, and caches the results for subsequent re-rendering.

                  

var app21 = new Vue({  el: '#app21',  data: {   currentView: 'comA'  },  methods: {   changeView: function(data){    this.currentView = 'com'+ data  //动态地改变currentView的值就可以动态挂载组件了。   }  },  components: {   comA: {    template: '

组件A

'   },   comB: {    template: '

组件B

'   },   comC: {    template: '

组件C

'   }  } });
The factory function receives a resolve callback and is called when receiving the component definition downloaded from the server. You can also call reject(reason) to indicate a loading failure. The setTimeout here is just to demonstrate asynchronousness. The specific download logic can be decided by yourself. For example, write the component configuration as an object configuration, request it through Ajax, and then call resolve to pass in the configuration options.

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

What are the loop traversal instructions in vue

How to use the Angular data binding mechanism

The above is the detailed content of How to use vue components in practical projects. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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