1
0
Fork 0
gaiety-life/src/main.js
2019-02-27 11:06:18 +01:00

12 lines
No EOL
403 B
JavaScript

// Import main css
import '~/assets/style/index.scss'
// Import default layout so we don't need to import it to every page
import DefaultLayout from '~/layouts/Default.vue'
// The Client API can be used here. Learn more: gridsome.org/docs/client-api
export default function (Vue, { router, head, isClient }) {
// Set default layout as a global component
Vue.component('Layout', DefaultLayout)
}