mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-31 19:17:48 +00:00
* feat: table footer component cleanup * Update TableFooter.vue * feat: Update design * chore: remove RTL mixin * chore: Make component in composable format * chore: review fixes
29 lines
433 B
Vue
29 lines
433 B
Vue
<template>
|
|
<span class="text-sm text-slate-700 dark:text-slate-200 font-medium">
|
|
{{
|
|
$t('GENERAL.SHOWING_RESULTS', {
|
|
firstIndex,
|
|
lastIndex,
|
|
totalCount,
|
|
})
|
|
}}
|
|
</span>
|
|
</template>
|
|
|
|
<script setup>
|
|
defineProps({
|
|
firstIndex: {
|
|
type: Number,
|
|
default: 0,
|
|
},
|
|
lastIndex: {
|
|
type: Number,
|
|
default: 0,
|
|
},
|
|
totalCount: {
|
|
type: Number,
|
|
default: 0,
|
|
},
|
|
});
|
|
</script>
|