mirror of
https://github.com/Drop-OSS/drop.git
synced 2026-01-31 15:37:09 +01:00
* 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>
|