fix: fullscreen and browser conficts

This commit is contained in:
chansee97 2024-05-14 19:14:07 +08:00
parent 8bafc3aa36
commit 344baa7cd1
2 changed files with 21 additions and 3 deletions

View File

@ -2,6 +2,16 @@
import { useAppStore } from '@/store'
const appStore = useAppStore()
useMagicKeys({
passive: false,
onEventFired(e) {
if (e.key === 'F11' && e.type === 'keydown') {
e.preventDefault()
appStore.toggleFullScreen()
}
},
})
</script>
<template>
@ -15,5 +25,3 @@ const appStore = useAppStore()
<span>{{ $t('app.toggleFullScreen') }}</span>
</n-tooltip>
</template>
<style scoped></style>

View File

@ -6,15 +6,25 @@ onMounted(() => {
text.value = '<p>模拟 Ajax 异步设置内容</p>'
}, 1500)
})
const active = ref(false)
</script>
<template>
<n-card title="富文本编辑器">
<n-space vertical :size="12">
<n-alert title="基于 Quill 封装" type="success" />
<n-switch v-model:value="active">
<template #checked>
禁用
</template>
<template #unchecked>
启用
</template>
</n-switch>
<n-space :size="12">
<div class="h-2xl">
<RichTextEditor v-model="text" />
<RichTextEditor v-model="text" :disabled="active" />
</div>
<div>
<n-h2>v-html 预览</n-h2>