project creation request form working
This commit is contained in:
parent
6c84f723f7
commit
c750001a2c
14 changed files with 194 additions and 89 deletions
|
|
@ -1,9 +1,16 @@
|
|||
<template>
|
||||
<main class="flex flex-col" style="--row-gap: var(--space-32)">
|
||||
<Projects />
|
||||
<ProjectRequestDialog v-if="isProjectRequestDialogOpen" />
|
||||
<ProjectRequestButton @click="isProjectRequestDialogOpen = true" />
|
||||
</main>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import Projects from "../components/Projects.vue";
|
||||
import ProjectRequestButton from "../components/ProjectRequestButton.vue";
|
||||
import ProjectRequestDialog from "../components/ProjectRequestDialog.vue";
|
||||
import { ref } from "vue";
|
||||
|
||||
const isProjectRequestDialogOpen = ref(false);
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue