0
点赞
收藏
分享

微信扫一扫

Element UI 框架中Loading 区域加载的使用方法

其生 2022-02-23 阅读 61
uicss3vue.js
function startLoading() {
  clearSettimeout = setInterval(() => {
    loading = Loading.service({
      lock: true,
      text: "努力加载中……",
      background: "rgba(0, 0, 0, 0.1)"
      // target: document.querySelector(".main") // 设置加载动画区域
    });
  }, 1000);
}
举报

相关推荐

0 条评论