2022-12-29 19:05:15 +08:00
|
|
|
import { reactive } from 'vue'
|
|
|
|
|
|
|
|
const store = reactive({
|
2023-02-08 19:09:58 +08:00
|
|
|
user: {},
|
|
|
|
stats: {
|
2023-02-09 19:07:54 +08:00
|
|
|
0: '❌已删除',
|
|
|
|
1: '🕒待审核中',
|
|
|
|
2: '✅正常',
|
|
|
|
9: '🙅🏻拒绝收录'
|
2023-02-13 23:00:15 +08:00
|
|
|
},
|
|
|
|
result: null // 搜索结果
|
2022-12-29 19:05:15 +08:00
|
|
|
})
|
|
|
|
|
|
|
|
export default function (app) {
|
|
|
|
app.config.globalProperties.$store = store
|
|
|
|
}
|