赞
踩
1、使用toRaw
Vue3.0给我们提供的新方法,toRaw方法是把被reactive或readonly后的Proxy对象转换为原来的target对象
使用方法:
import { toRaw } from 'vue'
const Data = toRaw(record);
console.log(Data, 'data----');
打印结果为
2、通过json序列化之后可获取值
const Data = JSON.parse(JSON.stringify(record));
console.log(Data, 'data----');
打印结果为
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。