1
0
forked from PGL/Clyde
Clyde/frontend/src/Apps/Inscription.vue

11 lines
237 B
Vue
Raw Normal View History

2024-03-08 11:54:10 +01:00
<script setup>
import Req from "./Request.vue"
import { getRegisters } from '@/rest/ServiceInscription.js'
2024-03-17 13:24:24 +01:00
const requests_example = await getRegisters();
2024-03-08 11:54:10 +01:00
</script>
<template>
<Req v-for="item of requests_example"/>
</template>