Skip to content

Commit b6f1347

Browse files
authored
Merge pull request #69 from vue-pivottable/fix/slot
fix: pvtAttr scoped slot 버그 수정#68
2 parents 83b4db2 + 6383df4 commit b6f1347

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/components/pivottable-ui/VDragAndDropCell.vue

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,12 @@
2828
"
2929
>
3030
<template #pvtAttr="{ attrName }">
31-
{{ attrName }}
31+
<slot
32+
name="pvtAttr"
33+
:attrName="attrName"
34+
>
35+
{{ attrName }}
36+
</slot>
3237
</template>
3338
</VDraggableAttribute>
3439
</Draggable>

0 commit comments

Comments
 (0)