test.vue 279 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view class="">
  3. <loading ref="loading" type="3" theme="2"/>
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. name: '',
  9. data() {
  10. return {
  11. };
  12. },
  13. onLoad() {
  14. this.$refs.loading.show()
  15. },
  16. methods:{
  17. }
  18. };
  19. </script>
  20. <style lang="scss" scoped>
  21. </style>