摘要:
app.use 插件 // myPlugin.js export default { install(app) { app.config.globalProperties.$myPlugin = () => { console.log('This is a method from a plugin! 阅读全文
摘要:
前言 Vue 2.x 采用的是 Object.defineProperty 来实现响应式系统,它只能监听已经存在的属性,无法监听对象属性的新增或删除。 Vue 3 使用 Proxy 拦截对对象和数组的访问和修改,实现了响应式系统。它通过拦截这些操作,追踪哪些数据被访问、修改,从而在数据变化时通知相关 阅读全文