mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
28 lines
697 B
Vue
28 lines
697 B
Vue
<script setup lang="ts">
|
|
const appConfig = useAppConfig()
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<UFormField
|
|
label="toaster.expand"
|
|
size="sm"
|
|
class="inline-flex ring ring-(--ui-border-accented) rounded-sm"
|
|
:ui="{
|
|
wrapper: 'bg-(--ui-bg-elevated)/50 rounded-l-sm flex border-r border-(--ui-border-accented)',
|
|
label: 'text-(--ui-text-muted) px-2 py-1.5',
|
|
container: 'mt-0'
|
|
}"
|
|
>
|
|
<USelectMenu
|
|
v-model="appConfig.toaster.expand"
|
|
:items="[true, false]"
|
|
color="neutral"
|
|
variant="soft"
|
|
class="rounded-sm rounded-l-none min-w-12"
|
|
:search-input="false"
|
|
/>
|
|
</UFormField>
|
|
</div>
|
|
</template>
|