UNPKG
init-me-seed-yyl-webpack
Version:
latest (0.1.0)
0.1.0
init-me seed init-me-seed-yyl-webpack
init-me-seed-yyl-webpack
/
seeds
/
vue2-ts
/
src
/
store
/
actions.ts
10 lines
(7 loc)
•
180 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
ActionTree
}
from
'vuex'
const
actions
:
ActionTree
<
any
,
any
> = {
addDemoLog
(
{ commit }, msg
) {
commit
(
'ADD_DEMO_LOG'
, msg); } }
export
default
actions;