mahee-auffret/pages/magasin.vue

35 lines
730 B
Vue
Raw Normal View History

2024-02-21 00:30:14 +01:00
<template>
<main>
<p>{{ globalData.magasin_explication }}</p>
<Projects :contents="magasin" />
</main>
</template>
<script>
import Projects from '@/components/Projects.vue';
export default {
setup() {
const magasin = ref([]);
2024-04-12 00:23:57 +02:00
const { data: itemsData } = useFetch('/api/items/magasin', { server: true });
onBeforeMount(async () => {
2024-04-12 00:23:57 +02:00
if (itemsData.value) {
magasin.value = itemsData.value.data;
}
2024-02-21 00:30:14 +01:00
});
2024-04-12 00:23:57 +02:00
let globalData = useState('globalData');
globalData = globalData.value.data;
2024-02-21 00:30:14 +01:00
return {
globalData,
2024-04-12 00:23:57 +02:00
magasin
2024-02-21 00:30:14 +01:00
};
},
components: {
Projects
}
};
</script>