Skip to content

Commit ba700c0

Browse files
authored
Merge pull request #10 from ryo-arima/develop
Develop
2 parents c4e7614 + 4090a40 commit ba700c0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+342
-777
lines changed

docker-compose.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ services:
22
mark1:
33
image: ryoarima/rocky-arm-mark1:latest
44
container_name: mark1
5-
ports:
6-
- "8080:8000"
5+
network_mode: host
76
depends_on:
87
- mysql
98
- redis

package-lock.json

+85-98
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/pages/public/create/signup.vue

+33-15
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
<template>
22
<v-app>
33
<v-app-bar app color="primary">
4+
<v-btn icon @click="goBack">
5+
<v-icon>mdi-arrow-left</v-icon>
6+
</v-btn>
47
<v-toolbar-title>Mark1</v-toolbar-title>
58
</v-app-bar>
69
<v-main>
@@ -29,30 +32,47 @@
2932
type="password"
3033
required
3134
></v-text-field>
32-
<v-btn type="submit" color="primary" block>サインアップ</v-btn>
35+
<v-btn color="primary" type="submit">サインアップ</v-btn>
3336
</v-form>
3437
</v-card-text>
38+
<v-card-actions>
39+
<v-btn color="secondary" @click="goToTop">トップへ戻る</v-btn>
40+
</v-card-actions>
3541
</v-card>
3642
</v-col>
3743
</v-row>
3844
</v-container>
3945
</v-main>
40-
<v-footer app color="primary" dark>
41-
<v-col class="text-center white--text">
42-
&copy; 2024 mark1
43-
</v-col>
44-
</v-footer>
4546
</v-app>
4647
</template>
4748

48-
<script>
49-
export default {
50-
name: 'PublicSignup',
49+
<script lang="ts">
50+
import { defineComponent } from 'vue';
51+
import { useRouter } from 'vue-router';
52+
53+
export default defineComponent({
54+
name: 'Signup',
5155
data() {
5256
return {
5357
email: '',
5458
password: '',
55-
confirmPassword: ''
59+
confirmPassword: '',
60+
};
61+
},
62+
setup() {
63+
const router = useRouter();
64+
65+
const goBack = () => {
66+
router.push('/');
67+
};
68+
69+
const goToTop = () => {
70+
router.push('/');
71+
};
72+
73+
return {
74+
goBack,
75+
goToTop,
5676
};
5777
},
5878
methods: {
@@ -65,11 +85,9 @@ export default {
6585
console.log('サインアップしました', this.email, this.password);
6686
}
6787
}
68-
}
88+
});
6989
</script>
7090

71-
<style scoped>
72-
.fill-height {
73-
min-height: 100vh;
74-
}
91+
<style>
92+
/* 必要に応じてスタイルを追加 */
7593
</style>

0 commit comments

Comments
 (0)