(八)computed 类型定义
2022年11月30日
computed
计算属性类型定义
一、computed 可以根据返回值来自动推断类型,所以就不用手动定义类型了
<script setup lang="ts">
import { computed } from 'vue'
const xxx = computed(() => {
// 一业务逻辑
...
})
</script>
Loading...
computed
计算属性类型定义<script setup lang="ts">
import { computed } from 'vue'
const xxx = computed(() => {
// 一业务逻辑
...
})
</script>