You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
pocketcommunityweb/src/app/forum/forum/forum.module.ts

21 lines
406 B

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
// 论坛组件
import {ForumComponent} from '../forum.component';
import {TranslateModule} from '@ngx-translate/core';
/**
* 论坛模块
*/
@NgModule({
declarations: [ForumComponent],
exports: [
ForumComponent
],
imports: [
CommonModule,
TranslateModule
]
})
export class ForumModule { }