Skip to content

Commit

Permalink
doc: update typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tangjinzhou committed Feb 28, 2022
1 parent f0c770d commit fe0fc80
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -386,7 +386,7 @@ Github:[https://github.com/surely-vue/table]
```html
<script>
// custom component
import { Form } from 'ant-desing-vue';
import { Form } from 'ant-design-vue';
export default {
name: 'custom-name',
setup() {
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ Github:[https://github.com/surely-vue/table]
```html
<script>
// 自定义组件
import { Form } from 'ant-desing-vue';
import { Form } from 'ant-design-vue';
export default {
setup() {
const formItemContext = Form.useFormItemContext();
Expand Down
2 changes: 1 addition & 1 deletion components/form/index.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ The second way is to wrap it with a custom component and call `useFormItemContex
```html
<script>
// custom component
import { Form } from 'ant-desing-vue';
import { Form } from 'ant-design-vue';
export default {
name: 'custom-name',
setup() {
Expand Down
2 changes: 1 addition & 1 deletion components/form/index.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ cover: https://gw.alipayobjects.com/zos/alicdn/ORmcdeaoO/Form.svg
```html
<script>
// 自定义组件
import { Form } from 'ant-desing-vue';
import { Form } from 'ant-design-vue';
export default {
setup() {
const formItemContext = Form.useFormItemContext();
Expand Down
2 changes: 1 addition & 1 deletion components/vc-cascader/OptionList/useKeyboard.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { RefOptionListProps } from '../../vc-select/OptionList';
import type { Key } from 'ant-design-vue/es/_util/type';
import type { Key } from '../../_util/type';
import type { Ref, SetupContext } from 'vue';
import { computed, ref, watchEffect } from 'vue';
import type { DefaultOptionType, InternalFieldNames, SingleValueType } from '../Cascader';
Expand Down
2 changes: 1 addition & 1 deletion components/vc-tree-select/hooks/useTreeData.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { computed } from 'vue';
import type { DataNode, SimpleModeConfig } from '../interface';
import { convertChildrenToData } from '../utils/legacyUtil';
import type { DefaultOptionType } from '../TreeSelect';
import type { VueNode } from 'ant-design-vue/es/_util/type';
import type { VueNode } from '../../_util/type';

function parseSimpleTreeData(
treeData: DataNode[],
Expand Down
2 changes: 1 addition & 1 deletion site/src/vueDocs/migration-v3.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ Major updates after the 3.0 version refactoring include `Tree` `TreeSelect` `Dat
```html
<script>
// custom component
import { Form } from 'ant-desing-vue';
import { Form } from 'ant-design-vue';
export default {
name: 'custom-name',
setup() {
Expand Down
2 changes: 1 addition & 1 deletion site/src/vueDocs/migration-v3.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
```html
<script>
// 自定义组件
import { Form } from 'ant-desing-vue';
import { Form } from 'ant-design-vue';
export default {
setup() {
const formItemContext = Form.useFormItemContext();
Expand Down

0 comments on commit fe0fc80

Please sign in to comment.