vue的计算属性

本文详细描述了一个使用Vue.js编写的简单应用,展示了如何使用数据绑定、计算属性以及方法来处理用户输入并更新显示的全名。特别关注了`firstName`、`lastName`和`fullName`变量的交互过程。
摘要由CSDN通过智能技术生成

在这里插入图片描述
在这里插入图片描述

<template>
  <div id="app">
    <p>姓:{{firstName}}</p>
    <p>名:{{lastName}}</p>
      <p>总:{{count}}</p>
      <p>全名:{{getFullName()}}</p>
      <p>全名:{{fullName1}}</p>
      <button @click="fullName1 ='妲己'">修改姓名为妲己</button>
</template>
export default {  name:"App", //如果组件没有在注册的时候指定姓名,则是使用该姓名
  components:{
    Avatar,
  },
  data(){
    return{
      firstName:"小",
      lastName:"熊",
      count:0,
    };
  },
  // 计算属性
  computed:{
   
    fullName1:{
      get(){
      return this.firstName +""+this.lastName;
      console.log("computed called");
    },set(val){
        console.log("正在设置全名",val);
        this.count++;
        this.firstName=val[0];
        this.lastName=val.substr(1);
    }
    },
  },
  methods:{
    getFullName(){
      console.log("methods called");
      return this.firstName +""+this.lastName;
    },
    setNewName(first,last){
      this.firstName=first;
      this.lastName=last;
    },
  },
};
</script>

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值