UNPKG
simple-frame-unit
Version:
latest (1.0.6)
1.0.6
1.0.4
1.0.3
1.0.2
基于vue2 研发的与simple-data后端配合使用的组件
simple-frame-unit
/
src
/
components
/
ed-base-vue
/
package
/
ExtendSlot.js
13 lines
(12 loc)
•
215 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
// 用于处理插槽
export
default
{
name
:
'EdExtendSlot'
,
functional
:
true
,
props
: {
render
:
Function
,
data
:
Object
},
render
:
(
h, ctx
) =>
{
return
ctx.
props
.
render
(h, ctx.
props
.
data
) } }