wb-table/src/store.js

12 lines
174 B
JavaScript
Raw Normal View History

2023-02-19 15:02:41 +08:00
import { reactive } from 'vue'
const store = reactive({
foo: 'bar',
version: '0.1.9'
})
export default function (app) {
app.config.globalProperties.$store = store
}