Skip to content

Commit

Permalink
feat: Converted Vue.js router to Angular router
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] committed Oct 23, 2023
1 parent 325b404 commit cf7c004
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions jfinal-cms-shop/vue-admin-web/router/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
// app-routing.module.ts
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';

import { HomeComponent } from './home/home.component';
import { AboutComponent } from './about/about.component';

const routes: Routes = [
{ path: 'home', component: HomeComponent },
{ path: 'about', component: AboutComponent },
{ path: 'contact', component: ContactComponent },
{ path: 'products', component: ProductsComponent },
{ path: 'services', component: ServicesComponent },
{ path: 'login', component: LoginComponent },
{ path: 'register', component: RegisterComponent },
{ path: '', redirectTo: '/home', pathMatch: 'full' },
{ path: '**', component: PageNotFoundComponent }
];

@NgModule({
imports: [RouterModule.forRoot(routes)],
exports: [RouterModule]
})
export class AppRoutingModule { }

0 comments on commit cf7c004

Please sign in to comment.