Using vuejs. Is it possible to change the value some data variable from an external file? For example
file1.js
export default{
data: function(){
somevar: false
}
}
file2.js
import otherfile from "./file1.js"
otherfile.data().somevar = true
This didn't work. The somevar value wasn't changed in file2.js . How can I change the value in file2.js and if not possible what is the correct way to do this?
proprather thandata.