This commit is contained in:
小海
2020-05-16 19:53:23 +08:00
parent ae62cbc58f
commit 7faebe83d5
4 changed files with 0 additions and 33 deletions

View File

@@ -1 +0,0 @@
<p>admin-index works!</p>

View File

@@ -1,15 +0,0 @@
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-admin-index',
templateUrl: './admin-index.component.html',
styleUrls: ['./admin-index.component.less']
})
export class AdminIndexComponent implements OnInit {
constructor() { }
ngOnInit(): void {
}
}

View File

@@ -1,17 +0,0 @@
import {NgModule} from '@angular/core';
import {CommonModule} from '@angular/common';
import {RouterModule} from '@angular/router';
import {AdminIndexComponent} from './admin-index.component';
@NgModule({
declarations: [
AdminIndexComponent
],
imports: [
CommonModule,
RouterModule.forChild([{path: '', component: AdminIndexComponent}])
]
})
export class AdminIndexModule {
}