lang="ts" setup这种怎么写 props
lang="ts" setup这种怎么写 props
import { defineProps } from 'vue';
const props = defineProps({
tags: {
type: Array as () => string[],
default: () => [],
},
});
import { defineProps } from 'vue';
const props = defineProps({
tags: {
type: Array as () => string[],
default: () => [],
},
});