💄 (task)

This commit is contained in:
Julien Calixte
2023-06-10 16:03:52 +02:00
parent f276a1cb5b
commit c6e2548191
2 changed files with 7 additions and 4 deletions

View File

@@ -1,4 +1,3 @@
import TaskList from '@/modules/task/components/TaskList.vue'
import type { Task } from '@/modules/task/models/task' import type { Task } from '@/modules/task/models/task'
import { toISODate, type ISODate } from '@/shared/types/date' import { toISODate, type ISODate } from '@/shared/types/date'
import { defineStore } from 'pinia' import { defineStore } from 'pinia'

View File

@@ -64,9 +64,13 @@ const saveTask = () => {
</div> </div>
</div> </div>
<step-input v-model="steps" /> <step-input v-model="steps" />
<button class="button is-primary is-fullwidth" type="submit"> <div class="columns is-centered">
save <div class="column is-one-third">
</button> <button class="button is-primary is-fullwidth" type="submit">
save
</button>
</div>
</div>
</form> </form>
</div> </div>
</div> </div>