未来全栈 976ecad506 2 | 4 ay önce | |
---|---|---|
.vscode | 4 ay önce | |
src | 4 ay önce | |
.browserslistrc | 4 ay önce | |
.editorconfig | 4 ay önce | |
.eslintrc.json | 4 ay önce | |
.gitignore | 4 ay önce | |
README.md | 4 ay önce | |
angular.json | 4 ay önce | |
capacitor.config.ts | 4 ay önce | |
ionic.config.json | 4 ay önce | |
karma.conf.js | 4 ay önce | |
package-lock.json | 4 ay önce | |
package.json | 4 ay önce | |
tsconfig.app.json | 4 ay önce | |
tsconfig.json | 4 ay önce | |
tsconfig.spec.json | 4 ay önce |
模块内容
页面 3个
edit-info 资料编辑页面
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
]
}