Vue-20、Vue.set()的使用

1、添加对象某个属性

javascript 复制代码
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Vue.set()的使用</title>
    <script type="text/javascript" src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js"></script>
</head>
<body>
<div id="root">
    <h2>学校地址:{{address}}</h2>
    <h2>学校名称:{{name}}</h2>
    <hr/>
    <h1 >学生信息</h1>
    <button @click="addsex">点击添加学生性别</button>
    <h2>学生名字:{{student.name}}</h2>
    <h2 v-if="student.sex">性别:{{student.sex}}</h2>
    <h2>学生真实年龄:{{student.age.rage}}</h2>
    <h2>学生对外年龄:{{student.age.sage}}</h2>
    <h2>学生朋友们</h2>
    <h2>
        <ul>
            <li v-for="(p,index) in student.friends" :key="index"> {{p.name}}--{{p.age}}</li>
        </ul>
    </h2>
</div>
<script type="text/javascript">
    Vue.config.productionTip=false;
    const vm = new Vue({
        el:"#root",
        data:{
            address:'尚硅谷',
            name:'北京',
            student:{
                name: 'tom',
                age:{
                    rage:40,
                    sage:29
                },
                friends:[
                    {name:'jeery',age:35},
                    {name:'tony',age:36}
                ]
            }
        },
        methods:{
            addsex(){
                Vue.set(this.student,'sex','男')
            }
        }
    })
</script>
</body>
</html>

2、另外一种写法

javascript 复制代码
this.$set(this.student,'sex','男');
相关推荐
likuolei1 小时前
XSL-FO 软件
java·开发语言·前端·数据库
正一品程序员1 小时前
vue项目引入GoogleMap API进行网格区域圈选
前端·javascript·vue.js
j***89461 小时前
spring-boot-starter和spring-boot-starter-web的关联
前端
star_11121 小时前
Jenkins+nginx部署前端vue项目
前端·vue.js·jenkins
im_AMBER1 小时前
Canvas架构手记 05 鼠标事件监听 | 原生事件封装 | ctx 结构化对象
前端·笔记·学习·架构
JIngJaneIL1 小时前
农产品电商|基于SprinBoot+vue的农产品电商系统(源码+数据库+文档)
java·前端·数据库·vue.js·spring boot·毕设·农产品电商系统
Tongfront1 小时前
前端通用submit方法
开发语言·前端·javascript·react
c***72741 小时前
SpringBoot + vue 管理系统
vue.js·spring boot·后端
可爱又迷人的反派角色“yang”2 小时前
LVS+Keepalived群集
linux·运维·服务器·前端·nginx·lvs
han_2 小时前
前端高频面试题之CSS篇(二)
前端·css·面试