27 lines
349 B
JavaScript
27 lines
349 B
JavaScript
|
import Vuex from '../dist/vuex.common.js'
|
||
|
|
||
|
const {
|
||
|
Store,
|
||
|
install,
|
||
|
version,
|
||
|
mapState,
|
||
|
mapMutations,
|
||
|
mapGetters,
|
||
|
mapActions,
|
||
|
createNamespacedHelpers,
|
||
|
createLogger
|
||
|
} = Vuex
|
||
|
|
||
|
export {
|
||
|
Vuex as default,
|
||
|
Store,
|
||
|
install,
|
||
|
version,
|
||
|
mapState,
|
||
|
mapMutations,
|
||
|
mapGetters,
|
||
|
mapActions,
|
||
|
createNamespacedHelpers,
|
||
|
createLogger
|
||
|
}
|