converted blabla listing into vuex store to avoid reloading the whole list

This commit is contained in:
2019-07-14 16:29:17 +02:00
parent cdd3bf1ea3
commit ddffd26c77
6 changed files with 134 additions and 156 deletions

View File

@@ -3,6 +3,7 @@ import Vuex from 'vuex'
import Common from './modules/common'
import User from './modules/user'
import Search from './modules/search'
import Blabla from './modules/blabla'
// https://github.com/vuejs/vuex/tree/dev/examples/shopping-cart
@@ -11,6 +12,7 @@ export default new Vuex.Store({
modules: {
Common,
User,
Search
Search,
Blabla
}
})