fa.route.js 166 B

12345678910111213
  1. const install = function(vm) {
  2. uni.$u.routeIntercept = function(route,resolve) {
  3. // console.log(route)
  4. resolve(true);
  5. }
  6. }
  7. export default {
  8. install
  9. }