mirror of https://github.com/vuejs/vitepress
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
542 B
26 lines
542 B
// https://vitepress.dev/guide/custom-theme
|
|
<% if (!defaultTheme) { %>import Layout from './Layout.vue'
|
|
import './style.css'
|
|
|
|
export default {
|
|
Layout,
|
|
enhanceApp({ app, router, siteData }) {
|
|
// ...
|
|
}
|
|
}
|
|
<% } else { %>import { h } from 'vue'
|
|
import Theme from 'vitepress/theme'
|
|
import './style.css'
|
|
|
|
export default {
|
|
...Theme,
|
|
Layout: () => {
|
|
return h(Theme.Layout, null, {
|
|
// https://vitepress.dev/guide/extending-default-theme#layout-slots
|
|
})
|
|
},
|
|
enhanceApp({ app, router, siteData }) {
|
|
// ...
|
|
}
|
|
}<% } %>
|