0
Give this a try:
data() {
return { testing: [] }
}
beforeMount () {
this.testing = this.stateTesting
},
computed: {
stateTesting () {
return this.your_state_here
}
}
Source:stackexchange.com
0
Give this a try:
data() {
return { testing: [] }
}
beforeMount () {
this.testing = this.stateTesting
},
computed: {
stateTesting () {
return this.your_state_here
}
}