2024-05-19 21:20:42 +08:00
|
|
|
<script setup lang="ts">
|
|
|
|
import { $t } from '@vben/locales';
|
2024-06-08 19:49:06 +08:00
|
|
|
import { VbenButton } from '@vben-core/shadcn-ui';
|
2024-05-19 21:20:42 +08:00
|
|
|
|
|
|
|
import IconSetting from './icons/setting.vue';
|
|
|
|
|
|
|
|
defineOptions({
|
|
|
|
name: 'PreferenceTrigger',
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<VbenButton
|
2024-06-16 13:43:33 +08:00
|
|
|
:title="$t('preferences.preferences')"
|
2024-06-09 13:31:43 +08:00
|
|
|
class="bg-primary flex-col-center h-9 w-9 cursor-pointer rounded-l-md rounded-r-none border-none"
|
2024-05-19 21:20:42 +08:00
|
|
|
>
|
|
|
|
<IconSetting class="text-lg" />
|
|
|
|
</VbenButton>
|
|
|
|
</template>
|