Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « stores « notes « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f105b7d0d11bc419c5b506d865d779a058d4e82a (plain)
1
2
3
4
5
6
7
8
import Vue from 'vue';
import Vuex from 'vuex';
import notesModule from './modules';

Vue.use(Vuex);

export default () =>
  new Vuex.Store(notesModule());