index.ts 159 B

123456
  1. import { getCurrentInstance } from 'vue';
  2. export function useRouter() {
  3. const proxy = getCurrentInstance()!.proxy as any;
  4. return proxy.$router || null;
  5. }