<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 This article mainly introduces the releva...
Recently, when I was doing a practice project, I ...
Correspondence between flutter and css in shadow ...
(P4) Web standards are composed of a series of sta...
1. Stop the database server first service mysqld ...
Preface Slow query log is a very important functi...
Preface Under Linux, compilation and linking requ...
If MySQL version 5.0 already exists on the machin...
1) Enter the folder path where the jdk file is st...
It is standard for websites to enable SSL nowaday...
Preface We all know that in Linux, "everythi...
<br />Original text: http://andymao.com/andy...
This article shares the installation tutorial of ...
A set of MySQL libraries for testing. The previou...
background All of the company's servers are p...