主题
类型描述。
添加 types/shop.d.ts 文件:
types/shop.d.ts
declare interface GoodsInfo { title: string; price: number; cover: string; pics: string[]; [key: string]: any; }
设定类型
const props = defineProps({ info: Object as PropType<GoodsInfo>, });
const info = ref<GoodsInfo>();