|
|
il y a 1 an | |
|---|---|---|
| .vscode | il y a 1 an | |
| src | il y a 1 an | |
| .browserslistrc | il y a 1 an | |
| .editorconfig | il y a 1 an | |
| .eslintrc.json | il y a 1 an | |
| .gitignore | il y a 1 an | |
| README.md | il y a 1 an | |
| angular.json | il y a 1 an | |
| capacitor.config.ts | il y a 1 an | |
| ionic.config.json | il y a 1 an | |
| karma.conf.js | il y a 1 an | |
| package-lock.json | il y a 1 an | |
| package.json | il y a 1 an | |
| tsconfig.app.json | il y a 1 an | |
| tsconfig.json | il y a 1 an | |
| tsconfig.spec.json | il y a 1 an |
npm i -S parse
npm i -S @types/parse
新增路由内容
const routes: Routes = [
// xxx
{
path: 'user',
loadChildren: () => import('../modules/user/user.module').then(m => m.UserModule)
}
// xxx
]
新增路由内容
const routes: Routes = [
{
path: 'tabs',
component: TabsPage,
children: [
// xxxxxx
{
path: 'tab3',
loadChildren: () => import('../../modules/user/mine/mine.module').then(mod => mod.MinePageModule)
}
// xxxxxx
]
}