main.js 343 B

123456789
  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. export default function (Vue, { router, head, isClient }) {
  5. // Set default layout as a global component
  6. Vue.component('Layout', DefaultLayout)
  7. }