Browse Source

KERNEL-8279 refactor:RouterWidget改成BI.RouterWidget

es6
Guyi 3 years ago
parent
commit
c04c937ea8
  1. 8
      dist/router.js

8
dist/router.js vendored

@ -3123,7 +3123,7 @@
var $router, cbs = []; var $router, cbs = [];
var RouterWidget = BI.inherit(BI.Widget, { BI.RouterWidget = BI.inherit(BI.Widget, {
init: function () { init: function () {
this.$router = this._router = BI.Router.$router = $router = new VueRouter({ this.$router = this._router = BI.Router.$router = $router = new VueRouter({
routes: this.options.routes routes: this.options.routes
@ -3143,9 +3143,9 @@
this.$router.init(this); this.$router.init(this);
} }
}); });
BI.shortcut("bi.router", RouterWidget); BI.shortcut("bi.router", BI.RouterWidget);
var RouterView = BI.inherit(BI.Widget, { BI.RouterView = BI.inherit(BI.Widget, {
props: { props: {
deps: 0 deps: 0
}, },
@ -3176,7 +3176,7 @@
BI.remove(cbs, this._callbackListener); BI.remove(cbs, this._callbackListener);
} }
}); });
BI.shortcut("bi.router_view", RouterView); BI.shortcut("bi.router_view", BI.RouterView);
BI.Router = BI.Router || VueRouter; BI.Router = BI.Router || VueRouter;
BI.Router.isSameRoute = isSameRoute; BI.Router.isSameRoute = isSameRoute;

Loading…
Cancel
Save