7dc889852d
* feat: new page layout + endpoint * feat: non-parallel mass import * feat: paginated admin library * feat: lint and performance improvement * feat: library filter util * feat: link frontend features to backend * fix: lint * fix: small fixes * feat: bump torrential * fix: lint
21 lines
248 B
Vue
21 lines
248 B
Vue
<template>
|
|
<div></div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
useHead({
|
|
title: "Home",
|
|
});
|
|
|
|
const router = useRouter();
|
|
router.push("/store");
|
|
|
|
onMounted(() => {
|
|
router.push("/store");
|
|
});
|
|
|
|
definePageMeta({
|
|
redirect: "/store",
|
|
});
|
|
</script>
|