这样props就可以拥有ts的类型推断,如果有默认值可以在下面写默认值
const props = withDefaults(
defineProps<{
consentValue?: any;
type?: string;
contentType?: string;
contentName?: string;
}>(),
{
type: 'singpass'
}
);
2023-11-15 21:23:34
这样props就可以拥有ts的类型推断,如果有默认值可以在下面写默认值
const props = withDefaults(
defineProps<{
consentValue?: any;
type?: string;
contentType?: string;
contentName?: string;
}>(),
{
type: 'singpass'
}
);