Skip to content

Instantly share code, notes, and snippets.

@jinseokoh
Created October 18, 2018 10:41
Embed
What would you like to do?
laravel-vue-spa-blog-01
import Vue from 'vue'
import store from '~/store'
import router from '~/router'
import i18n from '~/plugins/i18n'
import App from '~/components/App'
import '~/plugins'
import '~/components'
Vue.config.productionTip = false
/* eslint-disable no-new */
new Vue({
i18n,
store,
router,
...App
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment