:is dynamic componentUse v-bind:is="component name" to automatically find a matching component name. If there is no matching component name, it will not be displayed. <div id="app"> <test v-bind:is="which_to_show"></test> </div> <script> var demo = new Vue({ el: "#app", data: { which_to_show: "first" }, components: first: { template: "<div>Here is the subcomponent first</div>" }, second: { template: "<div>Here is the subcomponent second</div>" }, third: { template: "<div>Here is the subcomponent third</div>" } } }); </script> By changing the value of which_to_show, you can dynamically change the component you want to load and render, as follows: This is the end of this article about the detailed explanation of vue.js dynamic components. For more relevant vue.js dynamic component content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Detailed explanation of MySQL foreign key constraints
>>: Detailed tutorial on building a private Git server on Linux
If a form field in a form is set to disabled, the ...
introduction You must have encountered this in an...
Table of contents jQuery's $.ajax The beginni...
The previous article on Docker mentioned the cons...
Table of contents 1. Count data is lost Solution ...
1. Application Scenarios Parent page a.jsp Subpage...
Sometimes you may encounter a situation where a S...
This article shares with you the specific code of...
1.1 Introduction to storage engines 1.1.1 File sy...
Table of contents 1. Install vmware 1.1 Download ...
Copy code The code is as follows: <object clas...
After this roll call device starts calling the ro...
This article example shares with you the specific...
For example, if your current path is /var/log and...
Project Background Recently, there is a project w...