Vue

by Travis Smith

Vue

let test = "{ category: 'General' }"
let anotherTest = Object.assign(test)
console.log(test)
console.log(anotherTest)
console.log(test.category)
console.log(anotherTest.category)