ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
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消息提示模块。