熊二1
熊二1
  • 发布:2024-10-04 13:53
  • 更新:2024-10-04 14:10
  • 阅读:100

不会用uts,该怎么写才能编译过去

分类:uts
// blist.uts  
export default [  
    {  
        title: '第一集',  
        desc: '描述'  
    }  
]
<template>  
    <text v-for="(item,index) in dataSource" :key="index">{{item}}</text>  
</template>  

<script setup>  
    type TypeList = {  
        title: string,  
        desc: string  
    };  

    import list from '@/common/blist.uts';  
    console.log(list)  
    const dataSource = ref(list);  
</script>

控制台报错

13:47:54.059 [plugin:uni:app-uts] 编译失败  
13:47:54.059 ‌error: 'public' property exposes its 'local' type argument <no name provided>‌

我需要怎么写才能编译过去?

2024-10-04 13:53 负责人:无 分享
已邀请:
DCloud_heavensoft

DCloud_heavensoft

list是啥类型,ustjsonobject?你得仔细看UTSJSONObject和type的文档

要回复问题请先登录注册