import { getCurrentInstance } from 'vue'
setup() {
const { ctx } = getCurrentInstance()
console.log(ctx.$router.currentRoute.value)
}
import { useRoute } from 'vue-router'
import { toRaw } from 'vue'
setup () {
const route = useRoute()
console.log(toRaw(route))
}