This commit is contained in:
Ruin
2022-03-07 10:31:07 +08:00
parent c6df0ef581
commit 8ddedf704a
6 changed files with 87 additions and 7 deletions

View File

@@ -4,15 +4,18 @@
* @Author: Ruin 🍭
* @Date: 2022-03-03 17:03:51
* @LastEditors: 刘引
* @LastEditTime: 2022-03-04 15:46:33
* @LastEditTime: 2022-03-07 09:58:23
*/
import { NgModule } from "@angular/core";
import { CommonModule } from "@angular/common";
import { HomeModule } from "./home/home.module";
import { UserModule } from "./user/user.module";
// 引入并且配置服务
@NgModule({
declarations: [],
imports: [CommonModule, HomeModule, UserModule],
providers: [],
exports: [CommonModule, HomeModule, UserModule],
})
export class PagesModule {}