PHP Classes

File: resources/js/components/ui/input/Input.vue

Recommend this page to a friend!
  Packages of Niko Peikrishvili   Ticker   resources/js/components/ui/input/Input.vue   Download  
File: resources/js/components/ui/input/Input.vue
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Ticker
Application to track and manage to do tasks
Author: By
Last change:
Date: 2 months ago
Size: 901 bytes
 

Contents

Class file image Download
<script setup lang="ts"> import type { HTMLAttributes } from "vue" import { useVModel } from "@vueuse/core" import { cn } from "@/lib/utils" const props = defineProps<{ defaultValue?: string | number modelValue?: string | number class?: HTMLAttributes["class"] }>() const emits = defineEmits<{ (e: "update:modelValue", payload: string | number): void }>() const modelValue = useVModel(props, "modelValue", emits, { passive: true, defaultValue: props.defaultValue, }) </script> <template> <input v-model="modelValue" :class="cn('flex h-9 w-full rounded-md border border-input bg-transparent px-3 py-1 text-sm shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50', props.class)"> </template>