21 lines
564 B
Vue
21 lines
564 B
Vue
![]() |
<template>
|
||
|
<div style="display: flex;flex-wrap: wrap;justify-content: space-between;">
|
||
|
<ProjectPayment></ProjectPayment>
|
||
|
<ProjectInvoice></ProjectInvoice>
|
||
|
<ProjectBid></ProjectBid>
|
||
|
<ProjectFund></ProjectFund>
|
||
|
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
|
||
|
|
||
|
<script setup>
|
||
|
import { reactive, ref } from "vue"
|
||
|
import ProjectPayment from "./components/ProjectPayment.vue"
|
||
|
import ProjectInvoice from "./components/ProjectInvoice.vue"
|
||
|
import ProjectBid from "./components/ProjectBid.vue"
|
||
|
import ProjectFund from "./components/ProjectFund.vue"
|
||
|
|
||
|
|
||
|
</script>
|