diff --git a/docs/en-US/component/dialog.md b/docs/en-US/component/dialog.md index 699131b588..321d784755 100644 --- a/docs/en-US/component/dialog.md +++ b/docs/en-US/component/dialog.md @@ -169,7 +169,7 @@ dialog/events | Name | Description | Type | Default | | -------------------------- | ------------------------------------------------------------------------------------------------------------------------------ | -------------------------------------- | ----------- | -| model-value / v-model | visibility of Dialog | ^[boolean] | — | +| model-value / v-model | visibility of Dialog | ^[boolean] | false | | title | title of Dialog. Can also be passed with a named slot (see the following table) | ^[string] | '' | | width | width of Dialog, default is 50% | ^[string] / ^[number] | '' | | fullscreen | whether the Dialog takes up full screen | ^[boolean] | false | diff --git a/docs/en-US/component/tour.md b/docs/en-US/component/tour.md index 055fa77ac3..f30f570ba6 100644 --- a/docs/en-US/component/tour.md +++ b/docs/en-US/component/tour.md @@ -84,7 +84,7 @@ tour-step component configuration with the same name has higher priority | mask | whether to enable masking, change mask style and fill color by pass custom props | `boolean` \| ^[Object]`{ style?: CSSProperties; color?: string; }` | `true` | | gap | transparent gap between mask and target | `TourGap` | ^[Object]`{ offset: 6, radius: 2}` | | type | type, affects the background color and text color | `default` \| `primary` | `default` | -| model-value / v-model | open tour | `boolean` | — | +| model-value / v-model | open tour | `boolean` | `false` | | current / v-model:current | what is the current step | `number` | — | | scroll-into-view-options | support pass custom scrollIntoView options | `boolean` \| `ScrollIntoViewOptions` | ^[Object]`{ block: 'center' }` | | z-index | Tour's zIndex | `number` | `2001` |