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
384 B
15 lines
384 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'
|
||
|
import Icon from '@/components/Icon'
|
||
|
|
||
|
import { useDrawer } from '@/components/Drawer'
|
||
|
|
||
|
const [register, { openDrawer }] = useDrawer()
|
||
|
</script>
|