mirror of
https://github.com/Lissy93/dashy.git
synced 2025-07-27 07:34:43 +02:00
🚧 WIP, working on VueX store
This commit is contained in:
parent
41682c8914
commit
2946412b4c
17
src/store.js
Normal file
17
src/store.js
Normal file
@ -0,0 +1,17 @@
|
||||
import Vue from 'vue';
|
||||
import Vuex from 'vuex';
|
||||
|
||||
Vue.use(Vuex);
|
||||
|
||||
const store = new Vuex.Store({
|
||||
state: {
|
||||
count: 0,
|
||||
},
|
||||
mutations: {
|
||||
increment(state) {
|
||||
state.count++;
|
||||
},
|
||||
},
|
||||
});
|
||||
|
||||
export default store;
|
Loading…
x
Reference in New Issue
Block a user