Deprecated following as non standardEntity tasks, products, productcategories, services, servicecategories

This commit is contained in:
2024-12-22 22:13:34 +01:00
parent 61110da453
commit 1ba3d9c3e9
20 changed files with 287 additions and 63 deletions

View File

@@ -0,0 +1,25 @@
<template>
<EntityList
:items="items"
type="services"
/>
</template>
<script setup>
definePageMeta({
middleware: "auth"
})
const items = ref([])
const setupPage = async () => {
items.value = await useSupabaseSelect("services","*, unit(name)")
}
setupPage()
</script>
<style scoped>
</style>