Skip to content

Commit fe0fc80

Browse files
committed
doc: update typo
1 parent f0c770d commit fe0fc80

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

CHANGELOG.en-US.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ Github:[https://github.com/surely-vue/table]
386386
```html
387387
<script>
388388
// custom component
389-
import { Form } from 'ant-desing-vue';
389+
import { Form } from 'ant-design-vue';
390390
export default {
391391
name: 'custom-name',
392392
setup() {

CHANGELOG.zh-CN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ Github:[https://github.com/surely-vue/table]
383383
```html
384384
<script>
385385
// 自定义组件
386-
import { Form } from 'ant-desing-vue';
386+
import { Form } from 'ant-design-vue';
387387
export default {
388388
setup() {
389389
const formItemContext = Form.useFormItemContext();

components/form/index.en-US.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ The second way is to wrap it with a custom component and call `useFormItemContex
122122
```html
123123
<script>
124124
// custom component
125-
import { Form } from 'ant-desing-vue';
125+
import { Form } from 'ant-design-vue';
126126
export default {
127127
name: 'custom-name',
128128
setup() {

components/form/index.zh-CN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ cover: https://gw.alipayobjects.com/zos/alicdn/ORmcdeaoO/Form.svg
121121
```html
122122
<script>
123123
// 自定义组件
124-
import { Form } from 'ant-desing-vue';
124+
import { Form } from 'ant-design-vue';
125125
export default {
126126
setup() {
127127
const formItemContext = Form.useFormItemContext();

components/vc-cascader/OptionList/useKeyboard.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { RefOptionListProps } from '../../vc-select/OptionList';
2-
import type { Key } from 'ant-design-vue/es/_util/type';
2+
import type { Key } from '../../_util/type';
33
import type { Ref, SetupContext } from 'vue';
44
import { computed, ref, watchEffect } from 'vue';
55
import type { DefaultOptionType, InternalFieldNames, SingleValueType } from '../Cascader';

components/vc-tree-select/hooks/useTreeData.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { computed } from 'vue';
33
import type { DataNode, SimpleModeConfig } from '../interface';
44
import { convertChildrenToData } from '../utils/legacyUtil';
55
import type { DefaultOptionType } from '../TreeSelect';
6-
import type { VueNode } from 'ant-design-vue/es/_util/type';
6+
import type { VueNode } from '../../_util/type';
77

88
function parseSimpleTreeData(
99
treeData: DataNode[],

site/src/vueDocs/migration-v3.en-US.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Major updates after the 3.0 version refactoring include `Tree` `TreeSelect` `Dat
9999
```html
100100
<script>
101101
// custom component
102-
import { Form } from 'ant-desing-vue';
102+
import { Form } from 'ant-design-vue';
103103
export default {
104104
name: 'custom-name',
105105
setup() {

site/src/vueDocs/migration-v3.zh-CN.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@
9898
```html
9999
<script>
100100
// 自定义组件
101-
import { Form } from 'ant-desing-vue';
101+
import { Form } from 'ant-design-vue';
102102
export default {
103103
setup() {
104104
const formItemContext = Form.useFormItemContext();

0 commit comments

Comments
 (0)