UNPKG
st-store-pinia
Version:
latest (0.0.1)
0.0.1
Small Tail Store Pinia —— Small Tail 基于 Pinia 的与状态管理相关的代码库
st-store-pinia
/
lib
/
mixins
/
use-state-mixin.js
2 lines
(1 loc)
•
208 B
JavaScript
View Raw
1
2
"use strict"
;
Object
.
defineProperty
(
exports
,
Symbol
.
toStringTag
,{
value
:
"Module"
});
const
s=
require
(
"vue"
),n=
e
=>
{
const
t=s.
ref
(e);
return
{
data
:t,
getData
:
()=>
t.
value
,
setData
:
a
=>
t.
value
=a}};
exports
.
useStateMixin
=n;