mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-11-15 08:13:35 -05:00
* Wired up Bulk Archive / Delete / Restore button with reactivity on checkbox actions * Working on POSTing bulk actions * Working on Filtering by status * Add Action Entity * Implement Vuex for state management * Implement Vuex storage & list view bulk actions * Clean up console logs * Configure entity list views server side
16 lines
270 B
TypeScript
16 lines
270 B
TypeScript
import Vue from 'vue'
|
|
import Vuex from 'vuex'
|
|
import client_list from './modules/client_list'
|
|
|
|
Vue.use(Vuex)
|
|
|
|
const debug = process.env.NODE_ENV !== 'production'
|
|
|
|
const store = new Vuex.Store({
|
|
modules: {
|
|
client_list
|
|
},
|
|
strict: debug,
|
|
})
|
|
|
|
export default store |