You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
388 B

2 years ago
<template>
<div @click="openDrawer(true)">
<Icon icon="ion:settings-outline" />
<SettingDrawer @register="register" />
</div>
</template>
<script lang="ts" setup name="SettingButton">
import SettingDrawer from './SettingDrawer'
2 years ago
import { Icon } from '@/components/Icon'
2 years ago
import { useDrawer } from '@/components/Drawer'
const [register, { openDrawer }] = useDrawer()
</script>