fixed home redirect and added another random horizontal scroler

This commit is contained in:
vabene1111
2025-03-02 06:58:48 +01:00
parent d23139cd8a
commit 87f4068736
2 changed files with 2 additions and 1 deletions

View File

@@ -33,7 +33,7 @@ import BookViewPage from "@/pages/BookViewPage.vue";
const routes = [
{path: '/', component: StartPage, name: 'view_home'},
{path: '/search', redirect: 'view_home'},
{path: '/search', redirect: {name: 'view_home'}},
{path: '/test', component: TestPage, name: 'view_test'},
{
path: '/settings', component: SettingsPage, name: 'view_settings', redirect: '/settings/account',

View File

@@ -18,6 +18,7 @@
<horizontal-recipe-scroller :skeletons="4" mode="random"></horizontal-recipe-scroller>
<horizontal-recipe-scroller :skeletons="2" mode="rating"></horizontal-recipe-scroller>
<horizontal-recipe-scroller :skeletons="4" mode="keyword"></horizontal-recipe-scroller>
<horizontal-recipe-scroller :skeletons="4" mode="random"></horizontal-recipe-scroller>
</v-container>
</template>