mirror of
https://gitee.com/dromara/MaxKey.git
synced 2025-12-08 01:48:33 +08:00
11 lines
222 B
TypeScript
11 lines
222 B
TypeScript
import { Component } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'layout-blank',
|
|
template: `<router-outlet></router-outlet> `,
|
|
host: {
|
|
'[class.alain-blank]': 'true'
|
|
}
|
|
})
|
|
export class LayoutBlankComponent { }
|