UNPKG
@u3u/vue-hooks
Version:
latest (2.0.1)
2.0.1
2.0.0
1.4.0
1.3.0
1.2.0
1.1.1
1.1.0
1.0.1-alpha
1.0.0
1.0.0-alpha
⚡️ Awesome Vue Hooks
github.com/u3u/vue-hooks
u3u/vue-hooks
@u3u/vue-hooks
/
lib
/
mocks
/
store.d.ts
6 lines
(5 loc)
•
186 B
TypeScript
View Raw
1
2
3
4
5
6
import
{
VueConstructor
}
from
'vue'
;
export
interface
CounterState
{
count
:
number
; }
export
default
function
createStore
(
Vue
?:
VueConstructor
):
import
(
"vuex"
).
Store
<
CounterState
>;