nfsense/client/src/components/inputs/TextBox.vue

15 lines
No EOL
203 B
Vue

<script setup lang="ts">
const props = defineModel<{
modelValue: string,
}>();
let { modelValue } = $(props);
</script>
<template>
<input v-model="modelValue">
</template>
<style scoped>
</style>