数据加载提示,仅支持插件模式。
<wx-button @click="loading" type="light">加载中提示</wx-button> <script> export default { methods: { loading() { this.$loading.show("加载中"); setTimeout(() => { this.$loading.hide(); }, 2000); } } }; </script>
← Confirm 确认提示框 Toast 弹出式提示 →