export default { methods: { // 显示加载中提示框 toast(config = {}) { return this.$loading({ lock: true, text: '加载中...', spinner: 'el-icon-loading', customClass: 'el-loading-toast', ...config, }); }, }, };