企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
workdesktop提供多种消息服务:alert,message,notice。 你可以通过两种方式给页面发送消息提醒: * 在vue实例里使用`this.$message`,`this.$alert`,`this.$notice`获取相应的消息对象: ``` this.$message({ showClose: true, message: '这是一条消息提示' }); Vue.prototype.$notify.info({ title: '消息', message: '这是一条消息的提示消息' }); ``` * 在可获取index.html页面引用的页面里使用`top.$message`,`top.$alert`,`top.$notice`来使用相应的消息对象: ``` top.$message({ showClose: true, message: '警告哦,这是一条警告消息', type: 'warning' }); ``` 详细参数内容可查看elementui的message/alert/notice消息提示模块。