docs(Signature): fix component name (#11792)

This commit is contained in:
neverland 2023-05-01 11:50:53 +08:00 committed by GitHub
parent f2b1b3156e
commit 21e3c13928
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 4 deletions

View File

@ -10,10 +10,10 @@ Register component globally via `app.use`, refer to [Component Registration](#/e
```js
import { createApp } from 'vue';
import { Space } from 'vant';
import { Signature } from 'vant';
const app = createApp();
app.use(Space);
app.use(Signature);
```
## Usage

View File

@ -69,7 +69,7 @@ export default {
| 参数 | 说明 | 类型 | 默认值 |
| --------- | ------------------------------------ | -------- | ------ |
| type | 导出图片类型 | _string_ | `png` |
| penColor | 笔触颜色,默认黑色 | _string_ | `#000` |
| penColor | 笔触颜色,默认黑色 | _string_ | `#000` |
| lineWidth | 线条宽度 | _number_ | `3` |
| tips | 当不支持 Canvas 的时候出现的提示文案 | _string_ | - |

View File

@ -2,7 +2,6 @@
import { ref } from 'vue';
import VanSignature from '..';
import VanImage from '../../image';
import { useTranslate } from '../../../docs/site';
const t = useTranslate({
@ -43,7 +42,9 @@ const onSigning = (e) => console.log('signing', e);
@signing="onSigning"
/>
</demo-block>
<van-image v-if="demoUrl" :src="demoUrl" />
<demo-block :title="t('penColor')">
<van-signature
pen-color="#ff0000"
@ -54,6 +55,7 @@ const onSigning = (e) => console.log('signing', e);
@signing="onSigning"
/>
</demo-block>
<demo-block :title="t('lineWidth')">
<van-signature
:line-width="6"