We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
❯ ionic g page "Hello World" > ng generate page "Hello World" CREATE src/app/hello-world/hello-world.module.ts (564 bytes) CREATE src/app/hello-world/hello-world.page.scss (0 bytes) CREATE src/app/hello-world/hello-world.page.html (138 bytes) CREATE src/app/hello-world/hello-world.page.spec.ts (720 bytes) CREATE src/app/hello-world/hello-world.page.ts (275 bytes) UPDATE src/app/app-routing.module.ts (470 bytes) [OK] Generated page!
❯ git diff diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index 41f546e..28c56f4 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -4,6 +4,7 @@ import { Routes, RouterModule } from '@angular/router'; const routes: Routes = [ { path: '', redirectTo: 'home', pathMatch: 'full' }, { path: 'home', loadChildren: './home/home.module#HomePageModule' }, + { path: 'Hello World', loadChildren: './hello-world/hello-world.module#HelloWorldPageModule' }, ]; @NgModule({
The text was updated successfully, but these errors were encountered:
e32e77b
🎉 This issue has been resolved in version 1.2.1 🎉
The release is available on:
Your semantic-release bot 📦🚀
Sorry, something went wrong.
fix(page): dasherize route path
ad161dc
Fixes ionic-team/angular-toolkit#48
No branches or pull requests
The text was updated successfully, but these errors were encountered: