My Presentation at ITKonekt in Belgrade 2019 as an introduction to Vue with a few deep dives and tricks, to see what can be done with it in real projects.
User from an API user: Service.getCurrentUser() }; }, components: { UserStatus }, updated() { this.user.storeLatestUpdate(Date.now()); } }; new Vue({ mixins: [userMixin] });
User from an API user: Service.getCurrentUser() }; }, components: { UserStatus }, updated() { this.user.storeLatestUpdate(Date.now()); } }; Vue.mixin(userMixin);