update input props schema

This commit is contained in:
vasu
2023-06-21 21:30:47 +05:30
parent 836ecffc85
commit 9c83640b66
3 changed files with 24 additions and 24 deletions

View File

@@ -25,9 +25,12 @@ On this page you will find all of the input types based on multiple variants, st
```vue
<script setup>
import { Input } from 'flowbite-vue'
import { ref } from 'vue'
const name = ref('')
</script>
<template>
<Input placeholder="enter your first name" label="First name" />
<Input v-modal="name" placeholder="enter your first name" label="First name" />
</template>
```