mirror of
https://github.com/BewlyBewly/BewlyBewly.git
synced 2025-04-14 13:15:29 +00:00
16 lines
280 B
Vue
16 lines
280 B
Vue
<script setup lang="ts">
|
|
defineProps<{
|
|
modelValue: string | number
|
|
}>()
|
|
|
|
const model = defineModel<string | number>()
|
|
</script>
|
|
|
|
<template>
|
|
<textarea
|
|
v-model="model"
|
|
w-full h-500px border="1 solid $bew-border-color" rounded="4px" p-2
|
|
outline-none
|
|
/>
|
|
</template>
|