Перенес внешний проект vue3 в сервис для фронта. Будем подымать на микросервисах.

This commit is contained in:
valitovgaziz
2025-02-06 07:07:48 +05:00
parent 9da6dfe09d
commit c88d7ca727
57 changed files with 3047 additions and 1009 deletions
+23
View File
@@ -0,0 +1,23 @@
<template>
<Header />
<Registration />
<Footer />
</template>
<style></style>
<script>
import Header from '../components/header/header.vue';
import Footer from '../components/footer.vue';
import Registration from '../components/inout/registration.vue';
export default {
components: {
Header,
Footer,
Registration,
},
};
</script>