UNPKG

@_lan/web-libs

Version:

<div align="center"> <img src="./public/favicon.svg" width="160" /> <h1>SoybeanAdmin AntDesign</h1> <span>中文 | <a href="./README.en_US.md">English</a></span> </div>

13 lines (9 loc) 273 B
import type { App } from 'vue'; import { createPinia } from 'pinia'; import { resetSetupStore } from './plugins'; /** Setup Vue store plugin pinia */ export function setupStore(app: App) { const store = createPinia(); store.use(resetSetupStore); app.use(store); }