dynamize project

This commit is contained in:
isUnknown 2024-11-05 14:26:23 +01:00
parent 4d1811830c
commit 801db754d2
3 changed files with 23 additions and 2 deletions

14
src/stores/project.js Normal file
View file

@ -0,0 +1,14 @@
import { defineStore } from "pinia";
export const useProjectStore = defineStore("project", () => {
const stepsLabels = {
clientBrief: "Votre brief",
proposal: "Proposition commerciale",
extendedBrief: "Brief enrichi",
industrialIdeation: "Idéation industrielle",
virtualSample: "Échantillon virtuel",
physicalSample: "Échantillon physique",
};
return { stepsLabels };
});