摘要:
1、简介 相比于props和emit,provide和inject为跨组件通信提供了更好的方式。 2、示例 <html> <head> <title>组件通信 provide 和 inject</title> <script src="https://cdn.jsdelivr.net/npm/vue 阅读全文
摘要:
1、数组 for…of是支持 break、continue、return的,所以在功能上非常贴近原生的 for。 2、箭头函数 let test = { name: 'test', say: () => { console.log(this.name, this) } } console.log(t 阅读全文