You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

18 lines
358 B

<template>
<div>
<button @click="router.push('/choujiang')">抽奖</button>
<button @click="router.push('/zhongchou')">众筹</button>
<Mascot />
</div>
</template>
<script setup>
import { useRouter } from "vue-router";
// import Mascot from "../choujiang/lottery/Mascot.vue";
const router = useRouter();
</script>
<style scoped>
</style>