add warranties page

This commit is contained in:
Casey Wittrock 2025-10-28 00:16:35 -05:00
parent 44d47db0ad
commit 2828c0f9c8
6 changed files with 347 additions and 66 deletions

View file

@ -27,7 +27,7 @@
v-model="filterModel.value"
type="text"
@input="filterCallback()"
placeholder="Search by name"
:placeholder="`Search ${col.label}...`"
/>
</template>
<template v-if="col.type === 'status'" #body="slotProps">
@ -73,7 +73,7 @@ const props = defineProps({
},
});
const emit = defineEmits(['rowClick']);
const emit = defineEmits(["rowClick"]);
const filterRef = ref(props.filters);
const selectedRows = ref();