mirror of
https://github.com/BewlyBewly/BewlyBewly.git
synced 2025-04-14 13:15:29 +00:00
33 lines
743 B
Vue
33 lines
743 B
Vue
<script lang="ts" setup>
|
|
type Size = 'small' | 'medium' | 'large'
|
|
interface Props {
|
|
modelValue: string
|
|
size?: Size
|
|
}
|
|
const props = withDefaults(defineProps<Props>(), { size: 'medium' })
|
|
|
|
defineEmits(['update:modelValue', 'enter'])
|
|
|
|
const modelValue = ref<string>('')
|
|
|
|
onMounted(() => {
|
|
modelValue.value = props.modelValue
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<input
|
|
v-model="modelValue" type="text" class="b-input"
|
|
p="x-4 y-2"
|
|
rounded="$bew-radius" outline-none transition-all duration-300
|
|
bg="$bew-fill-1"
|
|
focus:shadow focus:ring="2px $bew-theme-color"
|
|
@input="$emit('update:modelValue', ($event.target as HTMLInputElement).value)"
|
|
@keydown.enter="$emit('enter')"
|
|
>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
</style>
|