aboutsummaryrefslogtreecommitdiff
path: root/src-vue/src/plugins/store.ts
blob: 94464e3c0bf07fd5e4fcd4138d40e56021db2abe (plain)
1
2
3
4
5
6
7
8
9
10
import { createStore } from 'vuex';

export const store = createStore({
    state () {
      return {
        installed_northstar_version: "1.9.7"
      }
    },
    mutations: {}
});