docs(Form): add with field tip (#8749)

This commit is contained in:
neverland 2021-05-23 08:55:44 +08:00 committed by GitHub
parent 4c69fdba30
commit c45c6aeed2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 5 deletions

View File

@ -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

View File

@ -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);
```
## 代码演示

View File

@ -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