Last active
February 22, 2018 22:38
-
-
Save danielschmitz/905b041e6ef53c96377ce30d113ec695 to your computer and use it in GitHub Desktop.
COnfigurando o VueStash
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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