chore(docs): update deps

Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
braks
2023-04-24 00:07:04 +02:00
committed by Braks
parent 5e4225d0b6
commit a639777cb7
5 changed files with 239 additions and 190 deletions
+4 -3
View File
@@ -1,13 +1,14 @@
<script lang="ts">
import { isClient } from '@vueuse/core'
import { inBrowser } from 'vitepress'
import { Suspense } from 'vue'
import DocsRepl from './DocsRepl.vue'
const DocsRepl = defineAsyncComponent(() => import('./DocsRepl.vue'))
export default defineComponent({
props: ['example'],
setup(props) {
return () => {
if (!isClient) {
if (!inBrowser) {
return null
}