vue mask layer loading

Write before each request to the background


//Open the mask layer
let loading = this.$loading({
  lock: true,
  text:'Loading',
  spinner: 'el-icon-loading',
  background: 'rgba(0, 0, 0, 0.7)'
})
loading.close();//Close the mask layer

Guess you like

Origin blog.csdn.net/weixin_44727080/article/details/114842280