-
with this table items return {
No: i + 1,
Judul: module.title,
Urutan: module.order,
"Cover Image": module.coverImage,
action: module.moduleId,
}; how can i bind the slots if the table cell name have 2 word? <template #cell(?)="{ value }">
<VaAvatar :src="value" size="small" square />
</template> |
Beta Was this translation helpful? Give feedback.
Answered by
m0ksem
Apr 27, 2023
Replies: 1 comment 4 replies
-
It is impossible to pass slot name with space inside, so you need to change your data field name to "coverImage" and column to { label: 'Cover Image', name: 'coverImage' }| |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
Fanreza
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
It is impossible to pass slot name with space inside, so you need to change your data field name to "coverImage" and column to