Deprecated following as non standardEntity checks, inventoryitems, spaces
This commit is contained in:
25
deprecated/entitys/services/index.vue
Normal file
25
deprecated/entitys/services/index.vue
Normal 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>
|
||||
Reference in New Issue
Block a user