9 lines
225 B
Python
9 lines
225 B
Python
|
// .vitepress/theme/index.js
|
||
|
import DefaultTheme from 'vitepress/theme'
|
||
|
import MyLayout from './MyLayout.vue'
|
||
|
|
||
|
export default {
|
||
|
extends: DefaultTheme,
|
||
|
// 使用注入插槽的包装组件覆盖 Layout
|
||
|
Layout: MyLayout
|
||
|
}
|