菜鸟的博客

纵有疾风起,人生不言弃。

导航

冲刺记录17-computed计算属性

computed计算属性

<template>
    <div class="person">
       姓:<input type="text" v-model="firstName"><br><br>
       名:<input type="text" v-model="lastName"><br><br>
       全名:<span>{{fullName}}</span>
       <button @click="changeFullName">修改全名</button>
    </div>
</template>

<script lang="ts" name="Person" setup>
import {ref,computed} from 'vue'
let firstName = ref('zhang')
let lastName = ref('san')

//这么定义的fullName是一个计算属性,是只可读的
/* let fullName = computed(()=>{
  return firstName.value.slice(0,1).toUpperCase()+firstName.value.slice(1)+'-'+lastName.value
}) */

//这么定义的fullName是一个计算属性,可读可写
let fullName = computed({
    get(){return firstName.value.slice(0,1).toUpperCase()+firstName.value.slice(1)+'-'+lastName.value},
    set(val){
        const [str1,str2] = val.split('-')
        firstName.value = str1,
        lastName.value = str2
    }
})

function changeFullName(){
    fullName.value = 'li-si'
}
</script>

<style scoped>
.person {
    background-color: skyblue;
    box-shadow: 0 0 10px;
    border-radius: 10px;
    padding: 20px;
}

button {
    margin: 0 5px;
}

li {
    font-size: 20px;
}
</style>

posted on 2024-05-31 21:10  hhmzd233  阅读(5)  评论(0编辑  收藏  举报