摘要: Vue3 父组件调用子组件的方法 // 父组件 <template> <div> 父页面 <son-com ref="sonRef"/> <button @click="handleClick">test</button> </div> </template> <script> import { d 阅读全文
posted @ 2020-12-02 21:57 雨中愚 阅读(39315) 评论(7) 推荐(2) 编辑
摘要: <script> // 监听网络状态 window.addEventListener("online", function(){ alert("网络连接了"); }); window.addEventListener("offline", function(){ alert("网络断开了"); }) 阅读全文
posted @ 2020-12-02 21:44 雨中愚 阅读(1317) 评论(0) 推荐(0) 编辑