front_foundation #9
@ -29,10 +29,11 @@
|
|||||||
date: string,
|
date: string,
|
||||||
lieu: string,
|
lieu: string,
|
||||||
}
|
}
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
|
|||||||
projectRDV: rendezVous[]
|
projectRDV: rendezVous[]
|
||||||
}>();
|
}>();
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
piair
commented
same comment as before, most of the style here is not for this part only, so it should not be here same comment as before, most of the style here is not for this part only, so it should not be here
|
|||||||
<style scoped>
|
<style scoped>
|
@ -31,7 +31,7 @@ onMounted(() => {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
/*
|
||||||
piair
commented
should this commented part really stay should this commented part really stay
|
|||||||
const loading = ref(false);
|
const loading = ref(false);
|
||||||
|
|
||||||
const callApiWithLoading = async (path: string) => {
|
const callApiWithLoading = async (path: string) => {
|
||||||
@ -39,7 +39,7 @@ const callApiWithLoading = async (path: string) => {
|
|||||||
await callApi(path);
|
await callApi(path);
|
||||||
loading.value = false;
|
loading.value = false;
|
||||||
};
|
};
|
||||||
|
*/
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -32,17 +32,17 @@
|
|||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { ref, onMounted } from "vue";
|
import { ref/*, onMounted*/ } from "vue";
|
||||||
import { callApi } from "@/services/api";
|
//import { callApi } from "@/services/api";
|
||||||
|
|
||||||
import Header from "../components/HeaderComponent.vue";
|
import Header from "../components/HeaderComponent.vue";
|
||||||
import Agenda from "../components/Agenda.vue";
|
import Agenda from "../components/AgendaComponent.vue";
|
||||||
import ProjectComp from "../components/ProjectComponent.vue";
|
import ProjectComp from "../components/ProjectComponent.vue";
|
||||||
import PendingProjectComponent from "@/components/PendingProjectComponent.vue";
|
import PendingProjectComponent from "@/components/PendingProjectComponent.vue";
|
||||||
import AddProjectForm from "@/components/AddProjectForm.vue";
|
import AddProjectForm from "@/components/AddProjectForm.vue";
|
||||||
|
|
||||||
const PORT = "8081";
|
//const PORT = "8081";
|
||||||
const URI = `http://localhost:${PORT}`;
|
//const URI = `http://localhost:${PORT}`;
|
||||||
|
|
||||||
//const projects = ref<{ name: string; link: string; members: string[] }[]>([]);
|
//const projects = ref<{ name: string; link: string; members: string[] }[]>([]);
|
||||||
|
|
||||||
piair
commented
remove this comment remove this comment
|
|||||||
|
Loading…
x
Reference in New Issue
Block a user
où est-ce que les RDV sont récupérés ?