GlobalLoading.vue 315 B

123456789101112131415161718192021
  1. <template>
  2. <van-loading v-if="loading" type="spinner" size="32px" />
  3. </template>
  4. <script setup>
  5. import { ref } from 'vue'
  6. const loading = ref(false)
  7. function useLoading() {
  8. return {
  9. loading,
  10. };
  11. }
  12. // defineExpose({ loading })
  13. </script>
  14. <style scoped>
  15. /* 你可以自定义 loading 样式 */
  16. </style>