Preface Named slots are bound to elements using the "name" attribute in the slot. Notice: 1. If no match is found, put it in an anonymous slot 2. The rendering order of named slots depends entirely on the template, not on the order of elements in the parent component Vue's anonymous slot (default slot)Parent Component <div> <myslot>I just now</myslot> </div> Subcomponents <div> <slot><slot> </div> Vue's named slotsParent Component <div> <myslot> <template #one>Piggy is a big fat cat</template> <template #two>They are all big assholes</template> <template #three>Mimi is a heartless little bastard</template> I just now </div> Subcomponents <div> <slot name="one"></slot> <slot><slot> <slot name="two"></slot> <slot name="three"></slot> </div> Rendered (in approximate order) is vue scoped slotsExplain scope slots in plain language: parent components can read the data carried by the corresponding slots of child components through slots. <div> <myslot> <template #oneData="oneData"> <div>{{oneData.one.message}}</div> </template> <template #two>They are all big assholes</template> <template #three>Mimi is a heartless little bastard</template> I just </myslot> </div> Subcomponents <div> <slot name="one" :data='one'></slot> <slot><slot> <slot name="two"></slot> <slot name="three"></slot> </div> <script> export default { data() { return { one: { message: 'This is the data message of the subcomponent', }, }; }, } </script> Code Optimization <div> <myslot> <template #oneData="{oneData}"> <div>{{oneData.message}}</div> </template> <template #two>They are all big assholes</template> <template #three>Mimi is a heartless little bastard</template> I just now </div> Subcomponents <div> <slot name="one" :oneData='one'></slot> <slot><slot> <slot name="two"></slot> <slot name="three"></slot> </div> <script> export default { data() { return { one: { message: 'This is the data message of the subcomponent', }, }; }, } </script> SummarizeThis is the end of this article about the basic use of vue named slots. For more relevant vue named slot content, please search 123WORDPRESS.COM's previous articles 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 two methods for setting global variables and session variables in MySQL
>>: Do you know how many connections a Linux server can handle?
1. Refine the selector By using combinators, the ...
Install nginx Note that you must install nginx-fu...
The first step is to download the free installati...
1. Record several methods of centering the box: 1...
Table of contents Create a simple springboot proj...
Because I need to use Ubuntu+Python 3.6 version t...
Preface NFS (Network File System) means network f...
Original URL: http://segmentfault.com/blog/ciaocc/...
This article compares and summarizes four ways of...
Table of contents Preface know Practice makes per...
Overview In the previous chapter, we learned abou...
There are many read-write separation architecture...
Precautions 1) Add interpreter at the beginning: ...
Promise is a new solution for asynchronous progra...
This error is often encountered by novices. This ...