mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-11 19:08:20 +00:00
18 lines
No EOL
249 B
Vue
18 lines
No EOL
249 B
Vue
<script setup lang="ts">
|
|
|
|
const props = defineModel<{
|
|
modelValue: string,
|
|
}>();
|
|
let { modelValue } = $(props);
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<textarea v-model="modelValue" rows="5"/>
|
|
</template>
|
|
|
|
<style scoped>
|
|
textarea {
|
|
resize: vertical;
|
|
}
|
|
</style> |