docs: JSRunner doc update

This commit is contained in:
ZiuChen
2023-04-19 22:28:34 +08:00
parent fb10a9013b
commit c69a6e5b00
9 changed files with 52 additions and 3 deletions

View File

@@ -19,6 +19,7 @@ export default defineConfig({
items: [
{ text: '超级剪贴板', link: '/project/ClipboardManager/' },
{ text: '超级Markdown', link: '/project/Markdown/' },
{ text: '超级JavaScript', link: '/project/JSRunner/' },
{ text: '超级分词', link: '/project/SmartWordBreak/' }
]
},
@@ -51,6 +52,7 @@ export default defineConfig({
items: [
{ text: '超级剪贴板', link: '/project/ClipboardManager/' },
{ text: '超级Markdown', link: '/project/Markdown/' },
{ text: '超级JavaScript', link: '/project/JSRunner/' },
{ text: '超级分词', link: '/project/SmartWordBreak/' }
]
},

View File

@@ -1,5 +1,5 @@
declare module '*.vue' {
import { ComponentOptions } from 'vue'
const componentOptions: ComponentOptions
export default componentOptions
import { defineComponent } from 'vue'
const component: ReturnType<typeof defineComponent>
export default component
}