打赏
摘要: 1、简介 相比于props和emit,provide和inject为跨组件通信提供了更好的方式。 2、示例 <html> <head> <title>组件通信 provide 和 inject</title> <script src="https://cdn.jsdelivr.net/npm/vue 阅读全文
posted @ 2020-02-16 22:47 孟繁贵 阅读(873) 评论(0) 推荐(0) 编辑
摘要: 1、数组 for…of是支持 break、continue、return的,所以在功能上非常贴近原生的 for。 2、箭头函数 let test = { name: 'test', say: () => { console.log(this.name, this) } } console.log(t 阅读全文
posted @ 2020-02-16 13:52 孟繁贵 阅读(100) 评论(0) 推荐(0) 编辑
TOP