Merge conflicts

This commit is contained in:
Kamigen
2024-03-30 21:32:11 -04:00
parent af35da4557
commit 0f364ddec1
3 changed files with 42 additions and 41 deletions

View File

@@ -154,6 +154,26 @@
</div>
</template>
<script>
export default {
data() {
return {
first_name: '',
last_name: '',
email: '',
message: '',
social_media: '',
phone_number: ''
}
},
methods: {
submit() {
this.$emit('submit', this.email)
}
}
}
</script>
<script setup>
import FooterLayout from '@/layouts/FooterLayout.vue';