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,27 @@
<template>
<EntityList
:items="items"
type="products"
/>
</template>
<script setup>
definePageMeta({
middleware: "auth"
})
const items = ref([])
const productcategories = ref([])
const setupPage = async () => {
items.value = await useSupabaseSelect("products","*, unit(name)")
productcategories.value = await useSupabaseSelect("productcategories", "*")
}
setupPage()
</script>
<style scoped>
</style>