mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs(Form): add with field tip (#8749)
This commit is contained in:
parent
4c69fdba30
commit
c45c6aeed2
@ -2,7 +2,7 @@
|
||||
|
||||
### Intro
|
||||
|
||||
Used for data entry and verification, and supports input boxes, radio buttons, check boxes, file uploads and other types.
|
||||
Used for data entry and verification, and supports input boxes, radio buttons, check boxes, file uploads and other types. Should be used with [Field](#/en-US/field) component.
|
||||
|
||||
### Install
|
||||
|
||||
@ -10,10 +10,11 @@ Register component globally via `app.use`, refer to [Component Registration](#/e
|
||||
|
||||
```js
|
||||
import { createApp } from 'vue';
|
||||
import { Form } from 'vant';
|
||||
import { Form, Field } from 'vant';
|
||||
|
||||
const app = createApp();
|
||||
app.use(Form);
|
||||
app.use(Field);
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
### 介绍
|
||||
|
||||
用于数据录入、校验,支持输入框、单选框、复选框、文件上传等类型。
|
||||
用于数据录入、校验,支持输入框、单选框、复选框、文件上传等类型,需要与 [Field 输入框](#/zh-CN/field) 组件搭配使用。
|
||||
|
||||
### 引入
|
||||
|
||||
@ -10,10 +10,11 @@
|
||||
|
||||
```js
|
||||
import { createApp } from 'vue';
|
||||
import { Form } from 'vant';
|
||||
import { Form, Field } from 'vant';
|
||||
|
||||
const app = createApp();
|
||||
app.use(Form);
|
||||
app.use(Field);
|
||||
```
|
||||
|
||||
## 代码演示
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
### Intro
|
||||
|
||||
The numberkeyboard component can be used with [PasswordInput](#/en-US/password-input) components or custom input box components.
|
||||
The NumberKeyboard component can be used with [PasswordInput](#/en-US/password-input) component or custom input box components.
|
||||
|
||||
### Install
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user