mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-10 18:38:22 +00:00
15 lines
No EOL
205 B
Vue
15 lines
No EOL
205 B
Vue
<script setup lang="ts">
|
|
|
|
const props = defineModels<{
|
|
modelValue?: string,
|
|
}>();
|
|
let { modelValue } = $(props);
|
|
|
|
</script>
|
|
|
|
<template>
|
|
<input v-model="modelValue">
|
|
</template>
|
|
|
|
<style scoped>
|
|
</style> |