This project is a palette creator tool that allows users to generate and customize color palettes for their design projects.
1import { createStore } from 'vuex';
2
3import actions from './actions';
4import getters from './getters';
5import mutations from './mutations';
6import state from './state';
7
8/**
9 * Vuex store for the color palette application.
10 * This store manages the state, actions, mutations, and getters for the application.
11 * @module store
12 */
13const store = createStore({
14 actions,
15 getters,
16 mutations,
17 state,
18});
19
20export default store;