toast.js 287 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 10 11 12 13 14 export default { methods: { // 显示加载中提示框 toast(config = {}) { return this.$loading({ lock: true, text: '加载中...', spinner: 'el-icon-loading', customClass: 'el-loading-toast', ...config, }); }, }, };