计算属性来描述依赖响应式状态的复杂逻辑。模板中最好不好写复杂的逻辑计算,否则会让模板变得臃肿,难以维护。
export default {
data() {
return {}
},
computed: {
wholeName() { return *****}
}
}
<script setup>
import { reactive, computed } from 'vue'
const wholeName = computed(() => {
return *****
});