mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
14 lines
279 B
JavaScript
14 lines
279 B
JavaScript
import {Component, View, Inject, Parent, NgElement} from 'angular2/angular2'
|
|
import {Log} from 'ionic/util'
|
|
|
|
/**
|
|
* A simple routing system that detects a URL and calls
|
|
* a handler.
|
|
*/
|
|
export class Router {
|
|
static open(url) {
|
|
Log.log('Router: open from url', url)
|
|
}
|
|
}
|
|
|