mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 19:41:59 +08:00
fix: fullscreen
and browser conficts
This commit is contained in:
parent
8bafc3aa36
commit
344baa7cd1
@ -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>
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user