This commit is contained in:
Thien Pham Van
2026-03-17 14:08:57 +07:00
parent c9940afc82
commit cf144ea896
34 changed files with 10875 additions and 0 deletions

10
app/layouts/default.vue Normal file
View File

@@ -0,0 +1,10 @@
<template>
<Header />
<slot />
<Footer />
</template>
<script>
import Footer from '~/components/Footer/Footer.vue';
import Header from '~/components/Header/Header.vue';
</script>