Example: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>slot practice</title> <script src="../../js/vue.js"></script> </head> <body> <div id="app"> <div style="border: 7px solid blueviolet;"> <h2>Parent Component</h2> <cpn> <!-- Add an element to the specified slot position --> <button slot="left">Button</button> <input type="text" slot="right" placeholder="This is an input box..."></input> </cpn> </div> </div> <template lang="" id="cpn"> <div style="border: 6px solid green;"> <h2>Subcomponents</h2> <!-- Define three slots in the subcomponent, and the values in the slots are default values--> <slot name="left">Left</slot> <slot name="mediate">Medium</slot> <slot name="right">Right</slot> </div> </template> <script> new Vue({ el:'#app', components:{ cpn:{ template:'#cpn', } } }) </script> </body> </html> The effect is as shown below:
This is the end of this article about the usage of slots in Vue. For more information about the usage of slots in Vue, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Using the outline-offset property in CSS to implement a plus sign
>>: Implementation of master-slave replication in docker compose deployment
Preface In the last issue, we explained LinearLay...
yum or rpm? The yum installation method is very c...
Today I will introduce a very simple trick to con...
1. The proxy_pass directive of the 1.ngx_stream_p...
Table of contents Start by clicking the input box...
This article example shares the specific code of ...
Table of contents Step 1: Installation Step 2: Ci...
To improve the performance of web pages, many dev...
How to set a limit on the number of visits to a c...
Step 1: Check the local Ethernet properties to se...
How to use CSS to control the arc movement of ele...
Q1: What indexes does the database have? What are...
Table of contents Preface Implementation ideas Im...
Table of contents 1. Use object to create an obje...
First, let’s think about a question: To insert su...