forked from opentiny/tiny-vue
57 lines
1.5 KiB
Vue
57 lines
1.5 KiB
Vue
<template>
|
||
<div class="demo-form">
|
||
<div class="title">
|
||
标签位置: <tiny-button-group :data="labelPositionList" v-model="labelPositionValue"></tiny-button-group>
|
||
</div>
|
||
<tiny-form ref="ruleFormRef" :model="createData" :label-position="labelPositionValue" label-width="60px">
|
||
<tiny-form-item label="用户名" prop="username">
|
||
<tiny-input v-model="createData.username"></tiny-input>
|
||
</tiny-form-item>
|
||
<tiny-form-item label="密码" prop="password">
|
||
<tiny-input v-model="createData.password" type="password" show-password></tiny-input>
|
||
</tiny-form-item>
|
||
<tiny-form-item label="密钥" prop="password2">
|
||
<tiny-input v-model="createData.password2" type="password" show-password></tiny-input>
|
||
</tiny-form-item>
|
||
</tiny-form>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import { Form, FormItem, Input, ButtonGroup } from '@opentiny/vue'
|
||
|
||
export default {
|
||
components: {
|
||
TinyForm: Form,
|
||
TinyFormItem: FormItem,
|
||
TinyInput: Input,
|
||
TinyButtonGroup: ButtonGroup
|
||
},
|
||
data() {
|
||
return {
|
||
labelPositionList: [
|
||
{ text: 'left', value: 'left' },
|
||
{ text: 'right', value: 'right' },
|
||
{ text: 'top', value: 'top' }
|
||
],
|
||
labelPositionValue: 'left',
|
||
createData: {
|
||
username: '',
|
||
password: '',
|
||
password2: ''
|
||
}
|
||
}
|
||
}
|
||
}
|
||
</script>
|
||
|
||
<style scoped>
|
||
.demo-form {
|
||
width: 380px;
|
||
}
|
||
.title {
|
||
margin-bottom: 20px;
|
||
font-size: 14px;
|
||
}
|
||
</style>
|