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/visitor/visitor.module.ts

20 lines
435 B

import {NgModule} from '@angular/core';
import {CommonModule} from '@angular/common';
import {TranslateModule} from '@ngx-translate/core';
import {RouterModule} from '@angular/router';
import {VisitorComponent} from './visitor/visitor.component';
/**
* 访客预约模块
*/
@NgModule({
declarations: [VisitorComponent],
imports: [
CommonModule,
TranslateModule,
RouterModule
]
})
export class VisitorModule {
}