// 显示弹窗
this.$utils.dialog(`选择要显示的内容`, DashboardSelector)
// 关闭弹窗
this.$utils.hideDialog()
/**
* 显示弹窗的方法
* @param {string} title 弹窗标题
* @param content 弹窗内容
* @param options // 其他选择,透传给element
* @example
* 简单方式:dialog('标题', '内容')
* 弹出组件:dialog('标题', Component)
* 弹出JSX:dialog('标题', (h: any) => <Component data={this.data}></Component>)
*/
public dialog(title: string, content: any, options: any = {})
// 关闭弹窗
public hideDialog()