mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-10 04:22:09 +10:00
13 lines
159 B
Vue
13 lines
159 B
Vue
<template>
|
|
<div></div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
useHead({
|
|
title: "Home",
|
|
});
|
|
|
|
const router = useRouter();
|
|
router.replace("/store");
|
|
</script>
|