This commit is contained in:
@fawn-nine
2023-03-03 12:11:23 +08:00
commit f8e1a3015b
502 changed files with 57308 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 = {
};