<template> <div class="demo"> <h1>{{ msg}}</h1> <h2>Student name: {{name}}</h2> <h2>Student gender: {{sex}}</h2> <h2>Student's age: {{myage+1}}</h2> <button @click="changeAge">Click me to modify data</button> </div> </template> <script> export default { name: 'Student', data() { return { msg: 'King's Lovers', myage:this.age } }, methods: { changeAge(){ this.myage=24 } }, //Simple reception// props:['name','age','sex'] //Restrict the data type while receiving // props:{ // name:String, //age:Number, // sex:String, // } //While receiving data: limit the type + specify the default value + restrict the necessity props: { name: { type: String, //name type required: true, //name is required}, age: { type: Number, default:22 }, sex: type: String, required: true } } } </script> <template> <div> <Student name="张三" sex="男" :myage="20"/> </div> </template> <script> //Import Student componentimport Student from './components/Student.vue' export default { name: 'App', components: Student } } </script> SummarizeThis article ends here. I hope it can be helpful to you. I also hope that you can pay more attention to more content on 123WORDPRESS.COM! You may also be interested in:
|
<<: Use tomcat to set shared lib to share the same jar
>>: CSS code to distinguish ie8/ie9/ie10/ie11 chrome firefox
Preface In daily development, we often encounter ...
Adding the attribute selected = "selected&quo...
Table of contents 1. CDN introduction 1.1 react (...
Basic syntax The use of text-overflow requires th...
1. Documentation Rules 1. Case sensitive. 2. The a...
Linux is an open system. Many ready-made programs...
This article shares the specific code of js to ac...
You can view the container logs through the docke...
background: Sometimes we need to display json dat...
Table of contents 1. Shared CommonModule 2. Share...
MySQL UTF-8 encoding MySQL has supported UTF-8 si...
summary During the interview, when discussing abo...
A: Usually stored in the client. jwt, or JSON Web...
MySQL advantage: Small size, fast speed, low tota...
1. Make sure the network connection method is bri...