This project is a palette creator tool that allows users to generate and customize color palettes for their design projects.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 20 lines 437 B view raw
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;