| 1234567891011121314151617181920212223242526 |
- <template>
- <view class="">
- <loading ref="loading" type="3" theme="2"/>
- </view>
- </template>
- <script>
- export default {
- name: '',
- data() {
- return {
-
- };
- },
- onLoad() {
- this.$refs.loading.show()
- },
- methods:{
-
- }
- };
- </script>
- <style lang="scss" scoped>
-
- </style>
|