create design to light page structure and content
This commit is contained in:
parent
8a2b90c8c0
commit
5a80cfaa81
9 changed files with 169 additions and 0 deletions
18
src/components/design-to-light/OptimizationRequestDialog.vue
Normal file
18
src/components/design-to-light/OptimizationRequestDialog.vue
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
<template>
|
||||
<form action="">
|
||||
<select name="projects" id="projects">
|
||||
<option v-for="project in currentProjects" :value="project.slug">
|
||||
{{ project.title }}
|
||||
</option>
|
||||
</select>
|
||||
<input type="text" value="Design to light" />
|
||||
<textarea placeholder="Décrivez votre demande…"> </textarea>
|
||||
</form>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { storeToRefs } from "pinia";
|
||||
import { useProjectsStore } from "../../stores/projects";
|
||||
|
||||
const { currentProjects } = storeToRefs(useProjectsStore());
|
||||
</script>
|
||||
Loading…
Add table
Add a link
Reference in a new issue