new homepage based on favorites (fixes #130 #59) #131

Merged
Xefir merged 23 commits from favorites into main 2024-09-02 09:28:09 +00:00
Showing only changes of commit 46b30f1ebb - Show all commits

View File

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