mirror of
https://github.com/speatzle/nfsense.git
synced 2025-05-11 02:48:21 +00:00
15 lines
No EOL
203 B
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> |