guhongwei 4 tahun lalu
induk
melakukan
a495aa8219
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      src/store/person_room.js

+ 1 - 1
src/store/person_room.js

@@ -9,7 +9,7 @@ const state = () => ({});
 const mutations = {};
 const mutations = {};
 
 
 const actions = {
 const actions = {
-  async query({ commit }, { skip = 0, limit = 10, ...info } = {}) {
+  async query({ commit }, { skip = 0, limit = undefined, ...info } = {}) {
     const res = await this.$axios.$get(api.interface, { skip, limit, ...info });
     const res = await this.$axios.$get(api.interface, { skip, limit, ...info });
     return res;
     return res;
   },
   },