mirror of
https://github.com/certd/certd.git
synced 2026-07-31 09:51:07 +08:00
10 lines
146 B
TypeScript
10 lines
146 B
TypeScript
|
|
import { createPinia } from "pinia";
|
||
|
|
const store = createPinia();
|
||
|
|
export default {
|
||
|
|
install(app) {
|
||
|
|
app.use(store);
|
||
|
|
}
|
||
|
|
};
|
||
|
|
|
||
|
|
export { store };
|