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

11 lines
237 B
Vue

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