摘要:
You are currently using minified code outside of NODE_ENV 'production'. This means that you are running a slower development build of Redux. You can u 阅读全文
摘要:
Uncaught SyntaxError: The requested module '/node_modules/.vite/vue-router.js?v=2f0f3daf' does not provide an export named 'VueRouter' 将: import { Vue 阅读全文
摘要:
中介者模式(Mediator Pattern) 定义:用来降低多个对象和类之间的通信复杂性。目的:用一个中介对象来封装一系列的对象交互,中介者使各对象不需要显式地相互引用,从而使其耦合松散,而且可以独立地改变它们之间的交互。场景:MVC框架中的控制器C就是模型M和识图V的中介者。 let media 阅读全文