Skip to content

Instantly share code, notes, and snippets.

@danielschmitz
Last active February 22, 2018 22:38
Show Gist options
  • Save danielschmitz/905b041e6ef53c96377ce30d113ec695 to your computer and use it in GitHub Desktop.
Save danielschmitz/905b041e6ef53c96377ce30d113ec695 to your computer and use it in GitHub Desktop.
COnfigurando o VueStash
import Vue from 'vue'
import App from './App'
import router from './router'
import VueStash from 'vue-stash'
Vue.use(VueStash)
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
el: '#app',
router,
components: { App },
template: '<App/>'
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment