Skip to content

Instantly share code, notes, and snippets.

@tiagolr
Last active November 20, 2019 21:23
Show Gist options
  • Save tiagolr/c8d8f786cda058f91a1d5eab63ebd836 to your computer and use it in GitHub Desktop.
Save tiagolr/c8d8f786cda058f91a1d5eab63ebd836 to your computer and use it in GitHub Desktop.
alternative to vuex-store
// main.js
import Vue from 'vue'
Vue.prototype.$store = new Vue({
data: {
firstName: 'Foo',
lastName: 'Bar'
},
computed: {
fullName: function () {
return this.firstName + ' ' + this.lastName
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment