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.

17 lines
358 B

1 month ago
1 month ago
1 month ago
  1. <template>
  2. <div>
  3. <button @click="router.push('/choujiang')">抽奖</button>
  4. <button @click="router.push('/zhongchou')">众筹</button>
  5. <Mascot />
  6. </div>
  7. </template>
  8. <script setup>
  9. import { useRouter } from "vue-router";
  10. // import Mascot from "../choujiang/lottery/Mascot.vue";
  11. const router = useRouter();
  12. </script>
  13. <style scoped>
  14. </style>