1234567891011121314151617181920212223242526 |
- <template>
- <div class="full-screen page-wrap">
- <div class="top-click" @click="goBack"></div>
- <img @click="toPage" class="home-img" src="@/assets/img/home2.png" alt="">
- </div>
- </template>
- <script setup>
- import { useRouter } from "vue-router";
- const router = useRouter();
- function goBack() {
- router.go(-1)
- }
- function toPage() {
- router.push('/home-3')
- }
- </script>
- <style scoped>
- .home-img {
- width: 100%;
- height: 100%;
- object-fit: fill;
- }
- </style>
|