老师,我这样写为啥会模板报错

来源: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>

http://img.mukewang.com/szimg/62e4bf9e0961069915640738.jpg

http://img.mukewang.com/szimg/62e4bfb00903fe1110160730.jpg

写回答

1回答

Swan不是HeySwan

提问者

2022-07-30

好吧  自己解决了  因为Vetur 报错的

0
0

Vue3 + TS 仿知乎专栏企业级项目

带你完成前后端分离复杂项目,率先掌握 vue3 造轮子技能

3142 学习 · 2313 问题

查看课程