You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am updating the content parameter in v-html='content' which includes Vue-code: vm.content = '<div v-repeat="someArray">{{someData}}</div>';
with this in the index.html file: <div v-html="content"></div>
But the result will be: {{someData}}
Should not the parser be called in this case? (similar to $apply in Angular)