https://cn.vuejs.org/guide/typescript/composition-api.html
对于运行时声明,我们可以使用 PropType 工具类型:
import type { PropType } from 'vue'
const props = defineProps({
book: Object as PropType<Book>
})
https://cn.vuejs.org/guide/typescript/composition-api.html
对于运行时声明,我们可以使用 PropType 工具类型:
import type { PropType } from 'vue'
const props = defineProps({
book: Object as PropType<Book>
})