老师,我这样写为啥会模板报错
来源:4-5 ColumnList 组件编码
Swan不是HeySwan
2022-07-30
<template>
<ul>
<li v-for="column in props" :key="column.id"></li>
</ul>
</template>
<script lang='ts'>
export default {
name: 'ColumnList',
}
</script>
<script lang='ts' setup>
import { reactive,ref,onMounted, PropType} from 'vue'
export interface CloumProps{
id:number,
title:string,
avater:string,
description:string
}
const props=defineProps<{
list:{
type:CloumProps,
required:true
}
}>()
console.log(props);
</script>
<style scoped>
</style>
写回答
1回答
-
Swan不是HeySwan
提问者
2022-07-30
好吧 自己解决了 因为Vetur 报错的
00
相似问题