mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-06-22 04:11:32 +10:00
2967e433ca
* fix: store page redirect * fix: silent fail passkey + error display * fix: remove console log modal
13 lines
156 B
Vue
13 lines
156 B
Vue
<template>
|
|
<div></div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
useHead({
|
|
title: "Home",
|
|
});
|
|
|
|
const router = useRouter();
|
|
router.push("/store");
|
|
</script>
|