tab.js 211 B

12345678910111213
  1. export const state = () => ({
  2. tab: {
  3. fetching: false,
  4. data: []
  5. }
  6. })
  7. export const mutations = {
  8. GET_TABLE_SUCCESS (state, result) {
  9. state.tab.fetching = false
  10. state.tab.data = result
  11. }
  12. }