chore: 重新构建git仓库

This commit is contained in:
2026-01-22 10:30:23 +08:00
parent 962560ea31
commit 7cb4f30b85
756 changed files with 114900 additions and 0 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 = {
};