Loading

摘要: <script src="https://cdn.bootcdn.net/ajax/libs/vue/2.6.9/vue.js"></script> <script> // 插件代码 const myPlugin = { install(Vue) { Vue.mixin({ created() { 阅读全文
posted @ 2022-05-02 21:11 资深if-else侠 阅读(72) 评论(0) 推荐(0) 编辑
摘要: class Dep { constructor() { // 订阅任务队列,方式有相同的任务,用Set数据结构简单处理 this.subscribers = new Set() } // 收集依赖 depend () { if (activeUpdate) { this.subscribers.ad 阅读全文
posted @ 2022-05-02 15:32 资深if-else侠 阅读(79) 评论(0) 推荐(0) 编辑