chore(vue): wrap isReady for potential future use (#22100)

This commit is contained in:
Liam DeBeasi
2020-09-17 10:20:35 -04:00
committed by GitHub
parent 9cb22be91a
commit 0971478f1f

View File

@ -23,6 +23,9 @@ export const createRouter = (opts: IonicVueRouterOptions) => {
oldInstall(app);
};
const oldIsReady = router.isReady.bind(router);
router.isReady = () => oldIsReady();
return router;
}