0
0
Fork 0

refs #6898 fix search

This commit is contained in:
Carlos Satorres 2024-07-01 13:20:55 +02:00
parent 95a3043359
commit 56017645c2
1 changed files with 8 additions and 2 deletions

View File

@ -2,7 +2,8 @@
import { computed, ref } from 'vue';
import { useI18n } from 'vue-i18n';
import VnTable from 'components/VnTable/VnTable.vue';
import VnSubToolbar from 'components/ui/VnSubToolbar.vue';
import VnSearchbar from 'components/ui/VnSearchbar.vue';
import RightMenu from 'components/common/RightMenu.vue';
const { t } = useI18n();
const tableRef = ref();
@ -77,7 +78,12 @@ const columns = computed(() => [
</script>
<template>
<VnSubToolbar />
<VnSearchbar data-key="SuppliersList" :limit="20" :label="t('Search suppliers')" />
<RightMenu>
<template #right-panel>
<SupplierListFilter data-key="SuppliersList" />
</template>
</RightMenu>
<VnTable
ref="tableRef"
data-key="SuppliersList"