diff --git a/src/layouts/components/header/FullScreen.vue b/src/layouts/components/header/FullScreen.vue index f3fb2eb..dcc5626 100644 --- a/src/layouts/components/header/FullScreen.vue +++ b/src/layouts/components/header/FullScreen.vue @@ -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() + } + }, +}) - - diff --git a/src/views/demo/editor/rich/index.vue b/src/views/demo/editor/rich/index.vue index 20b13f6..5adca8c 100644 --- a/src/views/demo/editor/rich/index.vue +++ b/src/views/demo/editor/rich/index.vue @@ -6,15 +6,25 @@ onMounted(() => { text.value = '

模拟 Ajax 异步设置内容

' }, 1500) }) + +const active = ref(false)