Some checks failed
Build and test FrontEnd / Build-frontend (push) Waiting to run
Build and test backend / Build-backend (push) Successful in 2m14s
Build and test backend / Test-backend (push) Successful in 1m17s
deploy to production / deploy-frontend (push) Successful in 26s
deploy to production / deploy-backend (push) Has been cancelled
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>
|