home-page-2.vue 490 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <div class="full-screen page-wrap">
  3. <div class="top-click" @click="goBack"></div>
  4. <img @click="toPage" class="home-img" src="@/assets/img/home2.png" alt="">
  5. </div>
  6. </template>
  7. <script setup>
  8. import { useRouter } from "vue-router";
  9. const router = useRouter();
  10. function goBack() {
  11. router.go(-1)
  12. }
  13. function toPage() {
  14. router.push('/home-3')
  15. }
  16. </script>
  17. <style scoped>
  18. .home-img {
  19. width: 100%;
  20. height: 100%;
  21. object-fit: fill;
  22. }
  23. </style>