gaoluyang
2026-06-24 c0cb161bb52ce0fbdce5c66ec391d107c75e2452
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<script setup lang="ts">
import type { HTMLAttributes } from 'vue';
 
import { cn } from '..\..\..\..\..\base\shared\src\utils';
 
import { useVModel } from '@vueuse/core';
 
const props = defineProps<{
  class?: HTMLAttributes['class'];
  defaultValue?: number | string;
  modelValue?: number | string;
}>();
 
const emits = defineEmits<{
  (e: 'update:modelValue', payload: number | string): void;
}>();
 
const modelValue = useVModel(props, 'modelValue', emits, {
  defaultValue: props.defaultValue,
  passive: true,
});
</script>
 
<template>
  <input
    v-model="modelValue"
    :class="
      cn(
        'border-input bg-background ring-offset-background placeholder:text-muted-foreground/50 focus-visible:outline-none flex h-10 w-full rounded-md border px-3 py-2 text-sm file:border-0 file:bg-transparent file:text-sm file:font-medium disabled:cursor-not-allowed disabled:opacity-50',
        props.class,
      )
    "
  />
</template>
<style lang="scss" scoped>
input {
  --ring: var(--primary);
 
  &:focus-visible {
    box-shadow: inset 0 0 0 1px hsl(var(--ring));
  }
 
  &::-ms-reveal,
  &::-ms-clear {
    display: none;
  }
 
  &::-webkit-credentials-auto-fill-button,
  &::-webkit-inner-spin-button,
  &::-webkit-outer-spin-button {
    display: none;
  }
}
</style>