| 123456789101112131415161718192021 |
- <template>
- <van-loading v-if="loading" type="spinner" size="32px" />
- </template>
- <script setup>
- import { ref } from 'vue'
- const loading = ref(false)
- function useLoading() {
- return {
- loading,
- };
- }
- // defineExpose({ loading })
- </script>
- <style scoped>
- /* 你可以自定义 loading 样式 */
- </style>
|