feat: ⚗️ implement waiting on home
All checks were successful
repod / xml (push) Successful in 30s
repod / php (push) Successful in 1m4s
repod / nodejs (push) Successful in 1m14s
repod / release (push) Has been skipped

This commit is contained in:
Michel Roux 2024-08-21 13:11:09 +00:00
parent 9be107edc9
commit 46b30f1ebb

View File

@ -1,7 +1,23 @@
<template><div /></template>
<template>
<AppContent class="content">
<Loading />
</AppContent>
</template>
<script>
import AppContent from '../components/Atoms/AppContent.vue'
import Loading from '../components/Atoms/Loading.vue'
export default {
name: 'Home',
components: {
AppContent,
Loading,
},
data() {
return {
loading: true,
}
},
}
</script>