designtopack/src/stores/project.js

15 lines
407 B
JavaScript
Raw Normal View History

2024-11-05 14:26:23 +01:00
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 };
});