图书馆小程序
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

export default {
// 独立命名空间
namespaced: true,
// 通过 state 声明数据
state: () => ({
videoData: {}
}),
// 更改 state 数据的唯一方式是:提交 mutations
mutations: {
/**
* 保存视频对象到 vuex
*/
setVideoData(state, videoData) {
state.videoData = videoData;
}
}
};