|
|
|
|
|
by pbowyer
2650 days ago
|
|
Thanks, good to hear. Elsewhere I've added something similar, and populate the data this way: var vue = new Vue({
el: '#app',
created: function () {
for (var key in __app.dataForVue) {
this[key] = __app.dataForVue[key];
}
},
// ...
};
|
|