13 lines
231 B
JavaScript
13 lines
231 B
JavaScript
/**
|
||
* @name: storeIndex
|
||
* @author: kahu4
|
||
* @date: 2024-02-21 17:28
|
||
* @description:暴露公共store
|
||
* @update: 2024-02-21 17:28
|
||
* */
|
||
import { createPinia } from "pinia";
|
||
|
||
const store = createPinia();
|
||
|
||
export default store;
|