UNPKG
pinia-facing-decorator
Version:
latest (0.1.0)
0.1.0
pinia装饰器模块
www.maxiaoqu.com
AmA-Utlis/pinia-facing-decorator
pinia-facing-decorator
/
es
/
pinia
/
module.js
10 lines
•
264 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
storeFactory
from
"../utils/factory"
;
export
function
Module
(
name
) {
return
function
(
Store
) {
return
storeFactory
(
Store
, name); }; }
export
function
GetModule
(
moduleClass, store
) {
console
.
log
(
"TODO: 待考虑!"
, store);
return
moduleClass; }