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.
19 lines
316 B
19 lines
316 B
1 year ago
|
<template>
|
||
|
<h3>这是Header</h3>
|
||
|
<button @click="GoHome">GoHome</button>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import {useRoute, useRouter} from "vue-router";
|
||
|
|
||
|
const route = useRoute()
|
||
|
const router = useRouter()
|
||
|
|
||
|
function GoHome() {
|
||
|
router.push({
|
||
|
name: 'home',
|
||
|
query: {...route.query}
|
||
|
})
|
||
|
}
|
||
|
</script>
|