Example demonstration: Subcomponents: <template> <div> <h3>I am {{name}}, I am {{age}} years old, my hobby is {{hobby}}</h3>, {{flag}} </div> </template> <script> export default { name:'Cpn', // Simple reception /* props:['age','hobby','name'], */ // Declare the data to be received and restrict the received data when declaring props:{ name: { //Declare type type:String, //Declare whether it is required: true, // Declare the default value default:'default value' }, age:{ type:Number, require:true, default:18 }, hobby: type:String, require:false }, flag:{ type:Boolean, require:false } } } </script> Parent component: <template> <div id="app"> <!-- <cpn name='李明' age="22" hobby="playing ball"></cpn> <cpn name="Xiaohong" age="20" hobby="Playing the piano"></cpn> --> <cpn name='李明'></cpn> <cpn hobby="Programming" :flag="flag"></cpn> <!--Note: If you want to pass the data in the current component data to the child component, you need to pass it in the form of v-bing: variable name = "variable name". If the data passed is not in data, there is no need to add the binding instruction, that is, v-bind (can be abbreviated as:) --> <button @click="changeFlag">Switch</button> </div> </template> <script> import Cpn from './components/Cpn.vue' export default { components: { Cpn }, name: "App", data() { return { flag:false } }, methods: { changeFlag(){ console.log(this.flag) this.flag=!this.flag; console.log(this.flag) } }, } </script> Running the above program, we can see that when we switch a value by clicking the button of the parent component, the value received by the child component will also change accordingly. There are two ways for a child component to receive data from its parent component:
This is the end of this article about the usage of props in Vue. For more information about the usage of props 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:
|
<<: The implementation principle of Tomcat correcting the JDK native thread pool bug
>>: CSS horizontal progress bar and vertical progress bar implementation code
1. Referential Integrity Referential integrity re...
<br />Original text: http://andymao.com/andy...
Temporary tables and memory tables A memory table...
Table of contents Portainer manages multiple Dock...
2.1 Semanticization makes your web pages better u...
It has always been very difficult to achieve wave...
Database performance optimization generally adopt...
Unlike other types of design, web design has been ...
This article describes the MySQL transaction mana...
This tutorial shares the installation and configu...
MySQL backup Cold backup:停止服務進行備份,即停止數據庫的寫入Hot ba...
Preface When the system space usage is too large ...
HTML has attempted to move away from presentation...
Step 1: View the current kernel rew $ uname -a Li...
mysql5.6.28 installation and configuration method...