Skip to content

Instantly share code, notes, and snippets.

@jinseokoh
Created October 18, 2018 10:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jinseokoh/5ada02986b176e2faa9b29af96a73835 to your computer and use it in GitHub Desktop.
Save jinseokoh/5ada02986b176e2faa9b29af96a73835 to your computer and use it in GitHub Desktop.
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