公告板
版本库
filestore
活动
搜索
登录
main
/
jxkg-new-ui-student
江西空管学生端
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
feat:倒计时
ZhangXianQiang
2024-06-06
0f52b1e924693795faea619cd68ea7ecc855a61f
[jxkg-new-ui-student.git]
/
src
/
store
/
modules
/
exam.js
1
2
3
4
5
6
7
8
9
10
11
import { ref } from 'vue';
import { defineStore } from 'pinia';
const useExamStore = defineStore('exam', () => {
const examInfo = ref(null);
return {
examInfo
}
});
export default useExamStore;