mirror of
https://github.com/BewlyBewly/BewlyBewly.git
synced 2025-04-14 13:15:29 +00:00
22 lines
470 B
Vue
22 lines
470 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 bg="$bew-fill-1"
|
|
/>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
textarea {
|
|
font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
|
|
}
|
|
</style>
|