2024-11-05 14:26:23 +01:00
|
|
|
import { defineStore } from "pinia";
|
|
|
|
|
|
|
|
|
|
export const useProjectStore = defineStore("project", () => {
|
|
|
|
|
const stepsLabels = {
|
2024-11-19 14:10:35 +01:00
|
|
|
Brief: "Votre brief",
|
2024-11-05 14:26:23 +01:00
|
|
|
proposal: "Proposition commerciale",
|
|
|
|
|
extendedBrief: "Brief enrichi",
|
|
|
|
|
industrialIdeation: "Idéation industrielle",
|
|
|
|
|
virtualSample: "Échantillon virtuel",
|
|
|
|
|
physicalSample: "Échantillon physique",
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
return { stepsLabels };
|
|
|
|
|
});
|