Skip to content

Commit

Permalink
fix: pass search, showEntries, setActive functions in scope
Browse files Browse the repository at this point in the history
  • Loading branch information
kouts committed Jan 8, 2022
1 parent 9040c56 commit ccd80ec
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion src/Dataset.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@
<template>
<div>
<slot :ds="{ dsShowEntries, dsResultsNumber, dsPage, dsPagecount, dsFrom, dsTo, dsData, dsRows, dsPages }"></slot>
<slot
:ds="{
dsShowEntries,
dsResultsNumber,
dsPage,
dsPagecount,
dsFrom,
dsTo,
dsData,
dsRows,
dsPages,
search,
showEntries,
setActive
}"
></slot>
</div>
</template>

Expand Down

0 comments on commit ccd80ec

Please sign in to comment.