mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-21 18:56:38 +08:00
14 lines
208 B
Vue
14 lines
208 B
Vue
<template>
|
|
<div>
|
|
支付回调
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import {useRouter} from "vue-router";
|
|
|
|
const router = useRouter()
|
|
console.log(router.currentRoute.value.query)
|
|
window.close()
|
|
</script>
|