update input props schema
This commit is contained in:
@@ -1,6 +1,11 @@
|
||||
<template>
|
||||
<Input placeholder="enter your first name" label="First name" />
|
||||
<div>
|
||||
<Input v-model="name" placeholder="enter your first name" label="First name" />
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts" setup>
|
||||
import { Input } from '../../../../src/index'
|
||||
import { ref } from 'vue'
|
||||
|
||||
const name = ref('')
|
||||
</script>
|
||||
|
||||
Reference in New Issue
Block a user