forked from opentiny/tiny-vue
54 lines
1.3 KiB
Vue
54 lines
1.3 KiB
Vue
<template>
|
|
<div class="demo-form">
|
|
<tiny-form ref="ruleFormRef" :model="createData" :rules="rules" label-width="100px" validate-position="right">
|
|
<tiny-form-item label="必填" prop="users" validate-position="top-end">
|
|
<tiny-input v-model="createData.users"></tiny-input>
|
|
</tiny-form-item>
|
|
<tiny-form-item label="日期" prop="datepicker" validate-position="bottom-end">
|
|
<tiny-date-picker v-model="createData.datepicker"></tiny-date-picker>
|
|
</tiny-form-item>
|
|
<tiny-form-item>
|
|
<tiny-button type="primary" @click="handleSubmit()"> 提交 </tiny-button>
|
|
</tiny-form-item>
|
|
</tiny-form>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import { ref, reactive } from 'vue'
|
|
import {
|
|
Form as TinyForm,
|
|
FormItem as TinyFormItem,
|
|
Input as TinyInput,
|
|
DatePicker as TinyDatePicker,
|
|
Button as TinyButton
|
|
} from '@opentiny/vue'
|
|
|
|
const ruleFormRef = ref()
|
|
|
|
const createData = reactive({
|
|
users: '',
|
|
url: '',
|
|
email: '',
|
|
datepicker: '',
|
|
textarea: ''
|
|
})
|
|
const rules = ref({
|
|
users: [
|
|
{ required: true, message: '必填', trigger: 'blur' },
|
|
{ min: 2, max: 11, message: '长度必须不小于2', trigger: 'blur' }
|
|
],
|
|
datepicker: { type: 'date' }
|
|
})
|
|
|
|
const handleSubmit = () => {
|
|
ruleFormRef.value.validate((valid) => {})
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.demo-form {
|
|
width: 380px;
|
|
}
|
|
</style>
|