-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from kogepanh/develop
Merge main
- Loading branch information
Showing
20 changed files
with
528 additions
and
588 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
<template> | ||
<v-row | ||
class="my-6" | ||
justify="center" | ||
> | ||
<v-col cols="12"> | ||
<v-simple-table> | ||
<template #default> | ||
<tbody> | ||
<tr> | ||
<td>お名前</td> | ||
<td>{{ contactForm.name }}</td> | ||
</tr> | ||
<tr> | ||
<td>学籍番号</td> | ||
<td>{{ contactForm.studentId }}</td> | ||
</tr> | ||
<tr> | ||
<td>メールアドレス</td> | ||
<td>{{ contactForm.email }}</td> | ||
</tr> | ||
<tr> | ||
<td>問い合わせ内容</td> | ||
<td>{{ contactForm.message }}</td> | ||
</tr> | ||
</tbody> | ||
</template> | ||
</v-simple-table> | ||
</v-col> | ||
</v-row> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'ContactTable', | ||
props:{ | ||
contactForm: { | ||
type: Object, | ||
required: true | ||
} | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
<template> | ||
<v-row | ||
class="my-6" | ||
justify="center" | ||
> | ||
<v-col cols="12"> | ||
<v-simple-table> | ||
<template #default> | ||
<tbody> | ||
<tr> | ||
<td>お名前</td> | ||
<td>{{ reserveForm.name }}</td> | ||
</tr> | ||
<tr> | ||
<td>学籍番号</td> | ||
<td>{{ reserveForm.studentId }}</td> | ||
</tr> | ||
<tr> | ||
<td>メールアドレス</td> | ||
<td>{{ reserveForm.email }}</td> | ||
</tr> | ||
<tr> | ||
<td>予約日</td> | ||
<td>{{ reserveForm.date }}</td> | ||
</tr> | ||
<tr> | ||
<td>予約時間</td> | ||
<td>{{ reserveForm.time }}</td> | ||
</tr> | ||
<tr> | ||
<td>補足事項</td> | ||
<td>{{ reserveForm.message }}</td> | ||
</tr> | ||
</tbody> | ||
</template> | ||
</v-simple-table> | ||
</v-col> | ||
</v-row> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
name: 'ReserveTable', | ||
props:{ | ||
reserveForm: { | ||
type: Object, | ||
required: true, | ||
} | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.