mirror of
https://github.com/BillyOutlast/drop.git
synced 2026-02-04 00:31:17 +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>
|