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
This article mainly introduces the implementation...
1. In the previous chapter, we learned that we ca...
First, let me briefly introduce what MySQL is; In...
Table of contents 1. Teleport 1.1 Introduction to...
Sometimes, we need to copy a whole column of data...
String extraction without delimiters Question Req...
Nginx supports three ways to configure virtual ho...
Table of contents 1. Data Manipulation Language (...
Last night I wrote an essay about the browser ren...
If you open some Microsoft documents with LibreOf...
Root directory and index file The root directive ...
Table of contents How to start mysqld Method 1: m...
Table of contents Preface Quick Review: JavaScrip...
A considerable number of websites use digital pagi...
I have seen some dynamic routing settings on the ...