Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想创建一个向父级添加几个方法的 VueJS mixin。为了做到这一点,我还需要存储一些数据。
是否可以将数据存储在可以由使用 mixin 的组件访问的 mixin 中?
您应该使用一些集中的状态机制或更流行的选项vuex来存储数据并从 mixin 的方法中对其进行操作。