S SmartDocs
系列: angular typescript 9 行 · 更新于 2026-02-03

app.routes.ts

angular/examples/week01-02/src/app/app.routes.ts

import { Routes } from '@angular/router';
import { SandboxComponent } from './ui/sandbox.component';

export const routes: Routes = [
  {
    path: '',
    component: SandboxComponent,
  },
];

相关文章