You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
324 B
12 lines
324 B
/*
|
|
* pinia 状态管理
|
|
*
|
|
* @Author: 1024创新实验室-主任:卓大
|
|
* @Date: 2022-09-06 20:58:09
|
|
* @Wechat: zhuda1024
|
|
* @Email: lab1024@163.com
|
|
* @Copyright 1024创新实验室 ( https://1024lab.net ),Since 2012
|
|
*/
|
|
import { createPinia } from 'pinia';
|
|
|
|
export const store = createPinia();
|
|
|