66 lines
1.4 KiB
Vue
66 lines
1.4 KiB
Vue
<script setup lang="ts">
|
|
import type { SelectListItem } from '@vben/types';
|
|
|
|
import { useSlots } from 'vue';
|
|
|
|
import { MdiQuestionMarkCircleOutline } from '@vben-core/iconify';
|
|
import {
|
|
NumberField,
|
|
NumberFieldContent,
|
|
NumberFieldDecrement,
|
|
NumberFieldIncrement,
|
|
NumberFieldInput,
|
|
VbenTooltip,
|
|
} from '@vben-core/shadcn-ui';
|
|
|
|
defineOptions({
|
|
name: 'PreferenceSelectItem',
|
|
});
|
|
|
|
withDefaults(
|
|
defineProps<{
|
|
disabled?: boolean;
|
|
items?: SelectListItem[];
|
|
placeholder?: string;
|
|
}>(),
|
|
{
|
|
disabled: false,
|
|
placeholder: '',
|
|
items: () => [],
|
|
},
|
|
);
|
|
|
|
const inputValue = defineModel<number>();
|
|
|
|
const slots = useSlots();
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
:class="{
|
|
'hover:bg-accent': !slots.tip,
|
|
'pointer-events-none opacity-50': disabled,
|
|
}"
|
|
class="my-1 flex w-full items-center justify-between rounded-md px-2 py-1"
|
|
>
|
|
<span class="flex items-center text-sm">
|
|
<slot></slot>
|
|
|
|
<VbenTooltip v-if="slots.tip" side="bottom">
|
|
<template #trigger>
|
|
<MdiQuestionMarkCircleOutline class="ml-1 cursor-help" />
|
|
</template>
|
|
<slot name="tip"></slot>
|
|
</VbenTooltip>
|
|
</span>
|
|
|
|
<NumberField v-model="inputValue" v-bind="$attrs" class="w-[165px]">
|
|
<NumberFieldContent>
|
|
<NumberFieldDecrement />
|
|
<NumberFieldInput />
|
|
<NumberFieldIncrement />
|
|
</NumberFieldContent>
|
|
</NumberField>
|
|
</div>
|
|
</template>
|