Initial commit

This commit is contained in:
2026-05-19 22:27:43 +08:00
commit 2ee120f756
33 changed files with 11949 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import DefaultTheme from 'vitepress/theme'
import mediumZoom from 'medium-zoom'
import { onMounted } from 'vue'
import './style/print.css'
export default {
...DefaultTheme,
setup() {
onMounted(() => {
mediumZoom('.main img')
})
}
}