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>
标签:slice,computed,firstName,value,let,计算,fullName,属性
From: https://www.cnblogs.com/muzhaodi/p/18225293