Vue.component('external-task-view', { props: ['url'], template: '
{{{ content }}}
', data: function () { return { content: '' }; }, ready: function () { var self = this; $.ajax({ cache: false, url: this.url, success: function(data) { self.content = data; } }); } });