Anthony Debucquoy
ba8b32160d
- Removing test mentions in readme - moving login page as an app - removing vite broken config - removing auto-generated and unused vite configuration (base.css) Overall simplification (sorry @Wal I kinda destroyed your login page a bit but seems fixable 👉👈)
33 lines
635 B
Vue
33 lines
635 B
Vue
<script setup>
|
|
import Req from "./Request.vue"
|
|
const requests_example = [ {
|
|
id:0,
|
|
type:"Inscription",
|
|
lastName:"DoefenschmirtzLEMAGNIFIQUE",
|
|
firstName:"Jhon",
|
|
address: "Radiator Springs",
|
|
country: "USA",
|
|
birthdate:"2004-02-02",
|
|
email:"JohnDoe@gmail.com",
|
|
cursus:"IT",
|
|
degree:"BAC1",
|
|
},
|
|
{
|
|
id:1,
|
|
type:"ReInscription",
|
|
lastName:"Doe",
|
|
firstName:"Jane",
|
|
address: "Radiator Springs",
|
|
country: "USA",
|
|
birthdate:"2004-03-03",
|
|
email:"JaneDoe@gmail.com",
|
|
cursus:"Psychology",
|
|
degree:"BAC1",
|
|
}]
|
|
</script>
|
|
|
|
<template>
|
|
<Req v-for="item of requests_example" v-bind="item">
|
|
</Req>
|
|
</template>
|