赞
踩
第一种方法
使用toRaw()获取
// const className = ref([]) className.value = toRaw(res.data.data)
第二种方法
使用原生js获取
JSON.parse(JSON.stringify(res.data.data))