16 lines
213 B
Vue
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> |