1
0
forked from PGL/Clyde
Clyde/frontend/src/Apps/Inscription.vue
Anthony Debucquoy 08c662a65f Fetch inscription on backend
This commit is waiting for the backend implementation to be merged.

The list of field expected is writen in comment
2024-03-15 14:41:21 +01:00

11 lines
231 B
Vue

<script setup>
import Req from "./Request.vue"
import { getRegisters } from '@/rest/ServiceInscription.js'
const requests_example = getRegisters();
</script>
<template>
<Req v-for="item of requests_example"/>
</template>