24 lines
361 B
Vue
24 lines
361 B
Vue
<template>
|
|
<EntityList
|
|
type="contacts"
|
|
:items="items"
|
|
></EntityList>
|
|
</template>
|
|
|
|
<script setup>
|
|
import EntityList from "~/components/EntityList.vue";
|
|
|
|
|
|
|
|
const items = ref([])
|
|
|
|
const setupPage = async () => {
|
|
items.value = await useSupabaseSelect("contacts","*, customer(name), vendor(name)")
|
|
}
|
|
|
|
setupPage()
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style> |