Anthony Debucquoy
08c662a65f
This commit is waiting for the backend implementation to be merged. The list of field expected is writen in comment
11 lines
231 B
Vue
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>
|