Resources
-Here are some links to help you get started:
- -Next Steps
-What do you want to do next with your app?
- - - -ng generate component xyz-
ng add @angular/material-
ng add @angular/pwa-
ng add _____-
ng test-
ng build-
diff --git a/.editorconfig b/.editorconfig index 59d9a3a..997967f 100644 --- a/.editorconfig +++ b/.editorconfig @@ -9,7 +9,7 @@ insert_final_newline = true trim_trailing_whitespace = true [*.ts] -quote_type = single +# quote_type = single [*.md] max_line_length = off diff --git a/package.json b/package.json index 1c4ceae..a708551 100644 --- a/package.json +++ b/package.json @@ -3,7 +3,7 @@ "version": "0.0.0", "scripts": { "ng": "ng", - "start": "ng serve", + "start": "ng serve --open", "build": "ng build", "watch": "ng build --watch --configuration development", "test": "ng test" diff --git a/src/app/app-routing.module.ts b/src/app/app-routing.module.ts index 0297262..3211a85 100644 --- a/src/app/app-routing.module.ts +++ b/src/app/app-routing.module.ts @@ -1,3 +1,11 @@ +/* + * @Description: {{ByRuin}} + * @Version: 2.0 + * @Author: Ruin 🍭 + * @Date: 2021-12-09 10:07:54 + * @LastEditors: 刘引 + * @LastEditTime: 2021-12-09 10:13:27 + */ import { NgModule } from '@angular/core'; import { RouterModule, Routes } from '@angular/router'; @@ -5,6 +13,6 @@ const routes: Routes = []; @NgModule({ imports: [RouterModule.forRoot(routes)], - exports: [RouterModule] + exports: [RouterModule], }) -export class AppRoutingModule { } +export class AppRoutingModule {} diff --git a/src/app/app.component.html b/src/app/app.component.html index c28b688..48b4746 100644 --- a/src/app/app.component.html +++ b/src/app/app.component.html @@ -1,501 +1,10 @@ - - - - - - - - - - - - -
- -Here are some links to help you get started:
- -What do you want to do next with your app?
- - - -ng generate component xyz-
ng add @angular/material-
ng add @angular/pwa-
ng add _____-
ng test-
ng build-