老师您好,记得之前课程里面做过一个例子,就是接口返回的data如果是数组那么响应式数据的类型用的ref,说这样绑起来方便些,那这个情况通常都用ref还是reactive呢,总是有些混乱
setup () {
const data = ref([])
const route = useRoute()
const getContentById = async () => {
const result = await get(api/shop/${route.params.id}/products
, { tab: ‘all’ })
if (result?.errno === 0 && result?.data?.length) {
data.value = result.data
}
}
getContentById()
return { data }
}