object -> array
This commit is contained in:
parent
b694b14065
commit
3e7851aae2
2
dist/router.js
vendored
2
dist/router.js
vendored
@ -70,7 +70,7 @@ export default class Router {
|
||||
}
|
||||
use(obj) {
|
||||
if (obj instanceof Router) {
|
||||
this.routes = Object.assign(Object.assign({}, this.routes), obj.routes);
|
||||
this.routes = [...this.routes, ...obj.routes];
|
||||
this.sortRoutes();
|
||||
}
|
||||
if (obj instanceof Tpl) {
|
||||
|
@ -95,7 +95,7 @@ export default class Router {
|
||||
*/
|
||||
use(obj: Router | Tpl): void {
|
||||
if(obj instanceof Router) {
|
||||
this.routes = { ...this.routes, ...obj.routes };
|
||||
this.routes = [ ...this.routes, ...obj.routes ];
|
||||
this.sortRoutes();
|
||||
}
|
||||
if(obj instanceof Tpl) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user