Files
vue-vben-admin/packages/business/layouts/src/authentication/toolbar.vue
2024-06-23 20:03:41 +08:00

25 lines
521 B
Vue

<script setup lang="ts">
import { LanguageToggle, ThemeToggle } from '@vben/widgets';
import {
AuthenticationColorToggle,
AuthenticationLayoutToggle,
} from './widgets';
defineOptions({
name: 'AuthenticationToolbar',
});
</script>
<template>
<div
class="flex-center bg-accent absolute right-2 top-4 rounded-3xl px-3 py-1"
>
<div class="hidden md:flex">
<AuthenticationColorToggle />
<AuthenticationLayoutToggle />
</div>
<LanguageToggle />
<ThemeToggle />
</div>
</template>