mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-27 19:44:50 +08:00
25 lines
521 B
Vue
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>
|