mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-18 19:21:34 +08:00
22 lines
440 B
TypeScript
22 lines
440 B
TypeScript
import {App} from 'ionic/ionic';
|
|
|
|
|
|
@App({
|
|
routes: {
|
|
'FirstPage': {
|
|
'path': '/firstpage',
|
|
'module': 'dist/examples/nav/basic/pages/first-page',
|
|
'root': true
|
|
},
|
|
'SecondPage': {
|
|
'path': '/secondpage',
|
|
'module': 'dist/examples/nav/basic/pages/second-page',
|
|
},
|
|
'ThirdPage': {
|
|
'path': '/thirdpage',
|
|
'module': 'dist/examples/nav/basic/pages/third-page',
|
|
},
|
|
}
|
|
})
|
|
class MyApp {}
|