commonFunctions.js 253 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
export default {
  methods: {
    loading(text) {
      const loading = this.$loading({
        lock: true,
        text,
        spinner: 'el-icon-loading',
        background: 'rgba(200, 200, 200, 0.3)',
      });
      return loading;
    },
  },
};