Files
FEDEO/spaces/pages/index.vue
Florian Federspiel 677030f712 Initial
2023-11-25 16:53:52 +01:00

16 lines
213 B
Vue

<template>
</template>
<script setup>
definePageMeta({
middleware: "auth"
})
const {find} = useStrapi4()
const response = await find('customers')
console.log(response)
</script>
<style scoped>
</style>