Inject router in vue-composition-api

Vue composition api is the new way to use Vue, that will be the suggest way in the next Vue@3.

In a Vue component that implements this API (https://composition-api.vuejs.org/api.html#setup) is there already a way to access the router in components that use the new “setup” API instead of the classic one?

F7’s Router in Vue also passes route and current router as components props:

export default {
  props: {
    f7router: Object,
    f7route: Object,
  },
  mounted() {
    console.log(this.f7route)
  }
}

Damn, did not notice that!
thank you very much!