index.ts 185 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 import { createPinia } from 'pinia' import { createApp, h } from 'vue' const store = createPinia() export function setupStore() { createApp(h('div')).use(store) } export { store }