15 lines
407 B
JavaScript
15 lines
407 B
JavaScript
|
|
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 };
|
||
|
|
});
|