Detailed explanation of Vue's props configuration

Detailed explanation of Vue's props configuration

insert image description here

<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>

Summarize

This 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:
  • Detailed explanation of how Vue handles various ways of writing props options
  • Vue props passes multiple value instances at a time
  • Detailed explanation of Vue's props configuration items
  • vue props type sets multiple types

<<:  Use tomcat to set shared lib to share the same jar

>>:  CSS code to distinguish ie8/ie9/ie10/ie11 chrome firefox

Recommend

js realizes horizontal and vertical sliders

Recently, when I was doing a practice project, I ...

Vue.js style layout Flutter business development common skills

Correspondence between flutter and css in shadow ...

Writing High-Quality Code Web Front-End Development Practice Book Excerpts

(P4) Web standards are composed of a series of sta...

How to install mysql6 initialization installation password under centos7

1. Stop the database server first service mysqld ...

Example of how to enable Slow query in MySQL

Preface Slow query log is a very important functi...

Steps to use autoconf to generate Makefile and compile the project

Preface Under Linux, compilation and linking requ...

Mysql 5.6.37 winx64 installation dual version mysql notes

If MySQL version 5.0 already exists on the machin...

Solution - BASH: /HOME/JAVA/JDK1.8.0_221/BIN/JAVA: Insufficient permissions

1) Enter the folder path where the jdk file is st...

Security configuration and detection of SSL after the website enables https

It is standard for websites to enable SSL nowaday...

Linux uses lsof command to check file opening status

Preface We all know that in Linux, "everythi...

Design Theory: Hierarchy in Design

<br />Original text: http://andymao.com/andy...

MySQL 8.0.11 compressed version installation tutorial

This article shares the installation tutorial of ...

Sharing of experience on repairing MySQL innodb exceptions

A set of MySQL libraries for testing. The previou...