File tree Expand file tree Collapse file tree 5 files changed +5
-18
lines changed Expand file tree Collapse file tree 5 files changed +5
-18
lines changed Original file line number Diff line number Diff line change @@ -19,9 +19,7 @@ const CConditionalTeleport = defineComponent({
1919 * @since v5.0.0-beta.1
2020 */
2121 container : {
22- type : [ Object , String ] as PropType <
23- HTMLElement | ( ( ) => HTMLElement ) | string
24- > ,
22+ type : [ Object , String ] as PropType < HTMLElement | ( ( ) => HTMLElement ) | string > ,
2523 default : 'body' ,
2624 } ,
2725 /**
Original file line number Diff line number Diff line change @@ -65,9 +65,7 @@ const CDropdown = defineComponent({
6565 * @since v5.0.0-beta.1
6666 */
6767 container : {
68- type : [ Object , String ] as PropType <
69- HTMLElement | ( ( ) => HTMLElement ) | string
70- > ,
68+ type : [ Object , String ] as PropType < HTMLElement | ( ( ) => HTMLElement ) | string > ,
7169 default : 'body' ,
7270 } ,
7371 /**
Original file line number Diff line number Diff line change @@ -96,7 +96,7 @@ const CSidebar = defineComponent({
9696 const mobile = ref ( )
9797 const visibleMobile = ref ( false )
9898 const visibleDesktop = ref (
99- props . visible !== undefined ? props . visible : props . overlaid ? false : true ,
99+ props . visible === undefined ? ( props . overlaid ? false : true ) : props . visible ,
100100 )
101101
102102 watch ( inViewport , ( ) => {
Original file line number Diff line number Diff line change @@ -26,9 +26,7 @@ const CTooltip = defineComponent({
2626 * @since v5.0.0-beta.1
2727 */
2828 container : {
29- type : [ Object , String ] as PropType <
30- HTMLElement | ( ( ) => HTMLElement ) | string
31- > ,
29+ type : [ Object , String ] as PropType < HTMLElement | ( ( ) => HTMLElement ) | string > ,
3230 default : 'body' ,
3331 } ,
3432 /**
Original file line number Diff line number Diff line change 1- /*
21declare module '*.vue' {
3- import type { DefineComponent } from 'vue'
2+ import { DefineComponent } from 'vue'
43 const component : DefineComponent < { } , { } , any >
54 export default component
65}
7- */
8- declare module '*.vue' {
9- import { DefineComponent } from 'vue' ;
10- const component : DefineComponent < { } , { } , any > ;
11- export default component ;
12- }
You can’t perform that action at this time.
0 commit comments