Detailed explanation of the principle of Vue monitoring data

Detailed explanation of the principle of Vue monitoring data

insert image description here

<body>
    <div id="root">
        <h1>Student's basic information</h1>
        <button @click="student.age++">Age+1 year old</button>
        <button @click="addSex">Add gender attribute. The default value is male</button><br>
        <button @click="student.sex='unknown' ">Modify property value</button><br>
        <button @click="addFriend">Add a friend at the top of the list</button><br>
        <button @click="updateFriend">Update the first person's name</button><br>
        <button @click="addHobby">Add a hobby</button><br>
        <button @click="change">Change the first hobby to mountain climbing</button><br>
        <button @click="removeSmoke">Filter out smoke</button><br>
        <h3>Name: {{student.name}}</h3>
        <h3>Age: {{student.age}}</h3>
        <h3 v-if="student.sex">Gender: {{student.sex}}</h3>
        <h3>Hobbies:</h3>
        <hr>
        <ul>
            <li v-for="(h,index) in student.hobby" :key="index">{{h}}</li>
        </ul>
        <hr>
        <h3>Friends:</h3>
        <ul>
            <li v-for="(f,index) in student.friends" :key="index">{{f.name}}--{{f.age}}</li>
        </ul>
    </div>
    <script>
        Vue.config.productionTip = false;
        const vm = new Vue({
            el: "#root",
            data: {
                student:
                    name: 'zhang',
                    age: 18,
                    hobby: ['drinking', 'smoking', 'perming'],
                    friends: [{
                        name: 'li',
                        age: 15
                    }, {
                        name: 'wang',
                        age: 10
                    }]
                }
            },
            methods: {
                addSex() {
                    this.$set(this.student, 'sex', 'male')
                        // Vue.set(vm.student, 'sex', 'male')
                },
                addFriend() {
                    this.student.friends.unshift({
                        name: 'YY',
                        age: 66
                    })
                },
                updateFriend() {
                    this.student.friends[0].name = "Xiao Liu";
                    this.student.friends[0].age = 22
                },
                addHobby() {
                    this.student.hobby.push('singing')
                },
                change() {
                    //splice addition means starting from the 0th one, deleting one, and the newly added value is climbing //Note: It cannot be modified directly through the array subscript form //this.student.hobby.splice(0, 1, 'climbing')
                    //Vue.set(this.student.hobby, 0, 'climbing')
                    this.$set(this.student.hobby, 0, 'mountain climbing')
                },
                removeSmoke() {
                    //filter does not affect the change of the original array this.student.hobby = this.student.hobby.filter((h) => {
                        return h !== 'smoking'
                    })
                }
            }
        })
    </script>
</body>

Summarize

This article ends here. I hope it can be helpful to you. I also hope you can pay more attention to more content on 123WORDPRESS.COM!

You may also be interested in:
  • Analysis of the reasons why Vue3 uses Proxy to implement data monitoring
  • Detailed explanation of the principle of Vue monitoring data
  • Use of Vue data monitoring method watch
  • Case analysis of data monitoring and data interaction in Vue
  • Detailed explanation of the principle of Vue monitoring data

<<:  Automated front-end deployment based on Docker, Nginx and Jenkins

>>:  Tips on making web pages for mobile phones

Recommend

HTML Basics: The basic structure of HTML

The basic structure of HTML hypertext documents is...

Detailed explanation of nodejs built-in modules

Table of contents Overview 1. Path module 2. Unti...

Using react-beautiful-dnd to implement drag and drop between lists

Table of contents Why choose react-beautiful-dnd ...

Why is IE6 used by the most people?

First and foremost, I am a web designer. To be mor...

Solution to overflow of html table

If the table is wide, it may overflow. For exampl...

Summary of commonly used time, date and conversion functions in Mysql

This article mainly summarizes some commonly used...

border-radius method to add rounded borders to elements

border-radius:10px; /* All corners are rounded wi...

How to solve the problem of forgetting the root password of Mysql on Mac

I haven't used mysql on my computer for a lon...

URL representation in HTML web pages

In HTML, common URLs are represented in a variety ...

Some notes on mysql create routine permissions

1. If the user has the create routine permission,...

How to run commands on a remote Linux system via SSH

Sometimes we may need to run some commands on a r...

Commonly used English fonts for web page creation

Arial Arial is a sans-serif TrueType font distribu...

Detailed explanation of how to efficiently import multiple .sql files into MySQL

MySQL has multiple ways to import multiple .sql f...

How to convert JavaScript array into tree structure

1. Demand The backend provides such data for the ...