mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
52 lines
2.0 KiB
Vue
52 lines
2.0 KiB
Vue
<template><section class="demo-field"><h1 class="demo-title">field</h1><example-block title="基础用法">
|
|
<zan-cell-group>
|
|
<zan-field type="text" label="用户名:" placeholder="请输入用户名" v-model="username" required></zan-field>
|
|
<zan-field type="password" label="密码:" placeholder="请输入密码" required></zan-field>
|
|
<zan-field type="textarea" label="个人介绍:" placeholder="请输入个人介绍" required></zan-field>
|
|
</zan-cell-group>
|
|
|
|
</example-block><example-block title="无label的输入框">
|
|
<zan-cell-group>
|
|
<zan-field type="text" placeholder="请输入用户名"></zan-field>
|
|
</zan-cell-group>
|
|
|
|
</example-block><example-block title="带border的输入框">
|
|
<div class="zan-field-wrapper">
|
|
<zan-field type="text" placeholder="请输入用户名" border=""></zan-field>
|
|
</div>
|
|
|
|
</example-block><example-block title="禁用的输入框">
|
|
<zan-cell-group>
|
|
<zan-field label="用户名:" type="text" placeholder="请输入用户名" v-model="username" disabled></zan-field>
|
|
</zan-cell-group>
|
|
|
|
</example-block><example-block title="错误的输入框">
|
|
<zan-cell-group>
|
|
<zan-field label="用户名:" type="text" placeholder="请输入用户名" error=""></zan-field>
|
|
</zan-cell-group>
|
|
|
|
</example-block><example-block title="错误的输入框">
|
|
<zan-cell-group>
|
|
<zan-field label="留言:" type="textarea" placeholder="请输入留言" rows="1" autosize=""></zan-field>
|
|
</zan-cell-group>
|
|
|
|
</example-block></section></template>
|
|
<style>
|
|
@component-namespace demo {
|
|
@b field {
|
|
.zan-field-wrapper {
|
|
padding: 0 10px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|
|
<script>
|
|
import Vue from "vue";import ExampleBlock from "../components/example-block";Vue.component("example-block", ExampleBlock);
|
|
export default {
|
|
data() {
|
|
return {
|
|
username: 'zhangmin'
|
|
};
|
|
}
|
|
};
|
|
</script> |