/** * {} * @author yutent * @date 2022/10/09 18:10:08 */ import { reactive } from 'vue' const store = reactive({ foo: 'bar', version: '1.1.4' }) export default function (app) { app.config.globalProperties.$store = store }