02 2023 档案

摘要:步骤一:main.js new Vue({ beforeCreated(){ //全局事件总监 Vue.prototype.$bus = this } }) //监听地方回调 this.$bus.$on('监听的名字',(data) => { //这里是获取到监听数据 }) 页面卸载的时候使用$of 阅读全文
posted @ 2023-02-21 22:47 爱尚丽明 阅读(33) 评论(0) 推荐(0)
摘要:function compareVersion(newVersion, currentVersion) { const v1 = newVersion.split('.'); const v2 = currentVersion.split('.'); for (let i = 0; i < v1.l 阅读全文
posted @ 2023-02-13 17:34 爱尚丽明 阅读(135) 评论(0) 推荐(0)