/** * 系统监控页面组件 */ export default class Monitoring { constructor(container, route) { this.container = container; this.route = route; this.init(); } async init() { this.render(); } render() { this.container.innerHTML = `

系统监控页面

该功能正在开发中...

`; } }