mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-05 04:22:49 +08:00
28 lines
658 B
Vue
28 lines
658 B
Vue
<script setup lang="ts">
|
|
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>
|
|
<n-tooltip placement="bottom" trigger="hover">
|
|
<template #trigger>
|
|
<CommonWrapper @click="appStore.toggleFullScreen">
|
|
<icon-park-outline-off-screen v-if="appStore.fullScreen" />
|
|
<icon-park-outline-full-screen v-else />
|
|
</CommonWrapper>
|
|
</template>
|
|
<span>{{ $t('app.toggleFullScreen') }}</span>
|
|
</n-tooltip>
|
|
</template>
|