# Loading 数据加载提示

数据加载提示,仅支持插件模式。

# 基本用法







 








<wx-button @click="loading" type="light">加载中提示</wx-button>

<script>
export default {
  methods: {
    loading() {
      this.$loading.show("加载中");
      setTimeout(() => {
        this.$loading.hide();
      }, 2000);
    }
  }
};
</script>
back
数据加载提示