完善功能

This commit is contained in:
liuyuan
2025-07-01 16:38:30 +08:00
parent 6dd6e9d213
commit 6b63bdc466
32 changed files with 2617 additions and 188 deletions

11
store/modules/video.js Normal file
View File

@@ -0,0 +1,11 @@
export const state = {
videoPlayId: ""
};
export const mutations = {
setVideoPlayId(state, data){
state.videoPlayId = data;
}
};
export const actions = {
};