mirror of
https://github.com/projectcapsule/capsule.git
synced 2026-08-20 13:06:51 +00:00
13 lines
503 B
JavaScript
13 lines
503 B
JavaScript
// This is the main.js file. Import global CSS and scripts here.
|
|
// The Client API can be used here. Learn more: gridsome.org/docs/client-api
|
|
import 'prism-themes/themes/prism-lucario.min.css'
|
|
|
|
import DefaultLayout from '~/layouts/Default.vue'
|
|
import MarkdownLayout from '~/layouts/Markdown.vue'
|
|
|
|
export default function (Vue, { router, head, isClient }) {
|
|
// Set default layout as a global component
|
|
Vue.component('LayoutDefault', DefaultLayout)
|
|
Vue.component('LayoutMarkdown', MarkdownLayout)
|
|
}
|