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
/
utils
/
libs.js
7 lines
•
198 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
var
defineProperty =
function
defineProperty
(
target, key, defaultValue
)
{ Object.
defineProperty
(target, key, {
value
: defaultValue,
enumerable
:
true
,
configurable
:
true
}); };