index.js 346 B

123456789101112131415161718
  1. import { $wuxLoading } from '../../dist/index'
  2. import ad from '../index/ad'
  3. ad({
  4. data: {},
  5. onLoad() {},
  6. showLoading() {
  7. this.$wuxLoading = $wuxLoading()
  8. this.$wuxLoading.show({
  9. text: '数据加载中',
  10. })
  11. setTimeout(() => {
  12. this.$wuxLoading.hide()
  13. }, 1500)
  14. },
  15. })