hideLoading.js 181 B

123456
  1. const hideLoading = async function(args) {
  2. args = args || {};
  3. args.isShow = false;
  4. this.$store.dispatch('loading/actionGetLoading', args);
  5. };
  6. export default hideLoading;