export default {
methods:{
isJson(obj){
return typeof obj === 'object' && Object.prototype.toString.call(obj) === '[object Object]'
}
}
}
export default {
methods:{
isJson(obj){
return typeof obj === 'object' && Object.prototype.toString.call(obj) === '[object Object]'
}
}
}