This commit is contained in:
2024-07-14 21:26:46 +02:00
parent fc0caf2d00
commit c27fd4cd2d
8 changed files with 363 additions and 291 deletions

23
components/OwnFields.vue Normal file
View File

@@ -0,0 +1,23 @@
<script setup>
const props = defineProps({
resource: {
required: true,
type: String
},
elementId: {
required: true,
type: String
},
edit: {
type: Boolean
}
})
</script>
<template>
</template>
<style scoped>
</style>

View File

@@ -5,6 +5,8 @@ const supabase = useSupabaseClient()
//const tenant = ref(dataStore.currentTenant)
const selectedProfile = ref(dataStore.activeProfile.id)
</script>
<template>