fix: re-key paginator slots

zio/stable
Daniel Roe 2023-05-29 13:42:18 +02:00
parent dfa0e5f300
commit 209013af09
1 changed files with 3 additions and 0 deletions

View File

@ -69,6 +69,7 @@ function removeEntry(entryId: any) {
} }
defineExpose({ createEntry, removeEntry, updateEntry }) defineExpose({ createEntry, removeEntry, updateEntry })
const key = 'key' as any
</script> </script>
<template> <template>
@ -84,6 +85,7 @@ defineExpose({ createEntry, removeEntry, updateEntry })
page-mode page-mode
> >
<slot <slot
:[key]="item[keyProp]"
:item="item" :item="item"
:active="active" :active="active"
:older="items[index + 1] as U" :older="items[index + 1] as U"
@ -96,6 +98,7 @@ defineExpose({ createEntry, removeEntry, updateEntry })
<template v-else> <template v-else>
<slot <slot
v-for="item, index of items" v-for="item, index of items"
:[key]="item[keyProp]"
:item="item as U" :item="item as U"
:older="items[index + 1] as U" :older="items[index + 1] as U"
:newer="items[index - 1] as U" :newer="items[index - 1] as U"