File tree 2 files changed +29
-6
lines changed
2 files changed +29
-6
lines changed Original file line number Diff line number Diff line change @@ -281,6 +281,12 @@ Vue.component('provide-function', {
281
281
} )
282
282
} )
283
283
284
+ Vue . component ( 'component-with-slot' , {
285
+ render ( h ) : VNode {
286
+ return h ( 'div' , this . $slots . default )
287
+ }
288
+ } )
289
+
284
290
Vue . component ( 'component-with-scoped-slot' , {
285
291
render ( h ) {
286
292
interface ScopedSlotProps {
@@ -301,6 +307,12 @@ Vue.component('component-with-scoped-slot', {
301
307
h ( 'child' , {
302
308
// Passing down all slots from parent
303
309
scopedSlots : this . $scopedSlots
310
+ } ) ,
311
+ h ( 'child' , {
312
+ // Passing down single slot from parent
313
+ scopedSlots : {
314
+ default : this . $scopedSlots . default
315
+ }
304
316
} )
305
317
] )
306
318
} ,
@@ -320,16 +332,22 @@ Vue.component('narrow-array-of-vnode-type', {
320
332
render ( h ) : VNode {
321
333
const slot = this . $scopedSlots . default ! ( { } )
322
334
if ( typeof slot === 'string' ) {
335
+ // <template slot-scope="data">bare string</template>
323
336
return h ( 'span' , slot )
324
337
} else if ( Array . isArray ( slot ) ) {
338
+ // template with multiple children
325
339
const first = slot [ 0 ]
326
- if ( ! Array . isArray ( first ) && typeof first !== 'string' ) {
340
+ if ( ! Array . isArray ( first ) && typeof first !== 'string' && first ) {
327
341
return first
328
342
} else {
329
343
return h ( )
330
344
}
331
- } else {
345
+ } else if ( slot ) {
346
+ // <div slot-scope="data">bare VNode</div>
332
347
return slot
348
+ } else {
349
+ // empty template, slot === undefined
350
+ return h ( )
333
351
}
334
352
}
335
353
} )
Original file line number Diff line number Diff line change 1
1
import { Vue } from "./vue" ;
2
2
3
- export type ScopedSlot = ( props : any ) => VNodeChildrenArrayContents | VNode | string ;
3
+ // Scoped slots can technically return anything if used from
4
+ // a render function, but this is "good enough" for templates
5
+ export type ScopedSlot = ( props : any ) => ScopedSlotChildren ;
6
+ export type ScopedSlotChildren = ScopedSlotArrayContents | VNode | string | undefined ;
7
+ export interface ScopedSlotArrayContents extends Array < ScopedSlotChildren > { }
4
8
5
- export type VNodeChildren = VNodeChildrenArrayContents | [ ScopedSlot ] | string ;
6
- export interface VNodeChildrenArrayContents extends Array < VNode | string | VNodeChildrenArrayContents > { }
9
+ // Relaxed type compatible with $createElement
10
+ export type VNodeChildren = VNodeChildrenArrayContents | [ ScopedSlot ] | string | boolean | null | undefined ;
11
+ export interface VNodeChildrenArrayContents extends Array < VNodeChildren | VNode > { }
7
12
8
13
export interface VNode {
9
14
tag ?: string ;
@@ -27,7 +32,7 @@ export interface VNodeComponentOptions {
27
32
Ctor : typeof Vue ;
28
33
propsData ?: object ;
29
34
listeners ?: object ;
30
- children ?: VNodeChildren ;
35
+ children ?: VNode [ ] ;
31
36
tag ?: string ;
32
37
}
33
38
You can’t perform that action at this time.
0 commit comments