UNPKG

wux-weapp

Version:

一套组件化、可复用、易扩展的微信小程序 UI 组件库

16 lines (14 loc) 317 B
import { $wuxLoading } from '../../dist/index' Page({ data: {}, onLoad() {}, showLoading() { this.$wuxLoading = $wuxLoading() this.$wuxLoading.show({ text: '数据加载中', }) setTimeout(() => { this.$wuxLoading.hide() }, 1500) }, })