main.js 369 B

12345678910
  1. // This is the main.js file. Import global CSS and scripts here.
  2. // The Client API can be used here. Learn more: gridsome.org/docs/client-api
  3. import DefaultLayout from '~/layouts/Default.vue'
  4. import '~/css/print.scss'
  5. export default function (Vue, { router, head, isClient }) {
  6. // Set default layout as a global component
  7. Vue.component('Layout', DefaultLayout)
  8. }