-
Notifications
You must be signed in to change notification settings - Fork 298
/
Copy pathMainForm.vue
61 lines (54 loc) · 1.48 KB
/
MainForm.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<template>
<v-form class="create-form">
<div class="page-header">
<h1>Create Curriculum</h1>
<v-btn color="primary" @click.prevent="submit">
Save
</v-btn>
</div>
<v-row>
<v-col cols="3">
<v-subheader>Name *</v-subheader>
</v-col>
<v-col cols="9">
<v-text-field v-model="state.selectedCurriculum.name" />
</v-col>
</v-row>
<v-row>
<v-col cols="3">
<v-subheader>Goal</v-subheader>
</v-col>
<v-col cols="9">
<v-text-field v-model="state.selectedCurriculum.goal" />
</v-col>
</v-row>
<v-row>
<v-col cols="12">
<v-label>Description</v-label>
<v-textarea solo name="description" v-model="state.selectedCurriculum.description" />
</v-col>
</v-row>
<FormSections />
<v-row>
<v-col cols="12">
<v-btn color="secondary" class="black--text" @click="addSection">
Add Section
</v-btn>
</v-col>
</v-row>
</v-form>
</template>
<script setup>
import { toRefs } from 'vue'
import FormSections from './FormSections.vue'
import { useAuthStore } from '@/stores/auth'
import { useCurriculumStore } from '@/stores/curricula'
const curriculumStore = useCurriculumStore()
const authStore = useAuthStore()
const { user } = toRefs(authStore)
const { state } = toRefs(curriculumStore)
const submit = () => {
state.value.selectedCurriculum.createdBy = user.value.id
curriculumStore.postCurriculum()
}
</script>