Files
nuttyreading-html/store/modules/video.js
@fawn-nine f8e1a3015b 1
2023-03-03 12:11:23 +08:00

12 lines
167 B
JavaScript

export const state = {
videoPlayId: ""
};
export const mutations = {
setVideoPlayId(state, data){
state.videoPlayId = data;
}
};
export const actions = {
};