finish proposal

This commit is contained in:
isUnknown 2024-12-20 07:30:11 +01:00
parent cdeebbf8c8
commit 16ae67dfc4
3 changed files with 30 additions and 8 deletions

View file

@ -21,6 +21,7 @@ import { computed } from "vue";
import { useProjectStore } from "../../stores/project";
import { useRouter } from "vue-router";
import ClientBrief from "./cards/ClientBrief.vue";
import Proposal from "./cards/Proposal.vue";
const { step } = defineProps({
step: Object,
@ -28,6 +29,7 @@ const { step } = defineProps({
const cardsMap = {
clientBrief: ClientBrief,
proposal: Proposal,
};
const emit = defineEmits(["update:file"]);