I have a json look like below and I wish to import from different component, because this json contain require and Math etc. Unable to save into json file format
let test = [
{
name:"A",
imgSrc: require('@/assets/img/A.png'),
range: Math.pow(10, 6),
isShow: true
},
{
name:"B",
imgSrc: require('@/assets/img/B.png'),
range: Math.pow(10, 2),
isShow: false
}
];