图书馆小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
346 B

2 weeks ago
  1. export default {
  2. // 独立命名空间
  3. namespaced: true,
  4. // 通过 state 声明数据
  5. state: () => ({
  6. videoData: {}
  7. }),
  8. // 更改 state 数据的唯一方式是:提交 mutations
  9. mutations: {
  10. /**
  11. * 保存视频对象到 vuex
  12. */
  13. setVideoData(state, videoData) {
  14. state.videoData = videoData;
  15. }
  16. }
  17. };