$(function(){
var app = new Vue({
el:"#app",
data: {
testData: globalObj
}
});
});
html:
<div id="app">
<span v-text="globalObj.value"></span>
</div>
globalObj changes depending on options selected on a different page. The data updates correctly on initial load of the app, but when I change the options on another page (which updates globalObj) the values are not updated in the view. I was also able to get the view to update when I implicitly set/change globalObj.value in the console. Has anyone encountered this problem before?