How to update vuejs component data after jquery calls when use turbolinks
问题 I have a vuejs's component that after mounted should show data fetched from server and use response to update data. When I use turbolinks the vue js don't update the dom. I tried many different ways to do that, but none worked =(, my last tried was this one: Vue.component('pf-main-menu', { props: [''], template: '<pf-menu v-bind:links="links"></pf-menu>', data: function () { return { links: [{text: 'teste'}] } }, mounted: function() { this.links = [{text: 'teste 2'}]; <-- This change works $