Skip to content

r-loading

r-loading 是一个加载图标,用于表示加载中的过渡状态。

示例

vue
<template>
  <r-config-provider :themeName="themeName">
    <page-header title="加载"></page-header>
    <view style="padding: 20px">
      <r-divider content-position="left">基础使用</r-divider>
      <r-loading type="circular"></r-loading>
      <r-loading type="spinner"></r-loading>

      <r-divider content-position="left">自定义颜色</r-divider>
      <r-loading type="circular" color="red">加载中。。。</r-loading>
      <r-divider content-position="left">垂直排列 </r-divider>
      <r-loading type="spinner" color="red" vertical>加载中。。。</r-loading>

      <r-divider content-position="left">自定义图标</r-divider>
      <r-loading type="circular">
        <template #icon>
          <r-icon
            prefix="iconfont"
            name="icon-left-circle"
            hoverClass="animate__fadeIn"
          />
        </template>
      </r-loading>
      <r-divider content-position="left">自定义大小</r-divider>
      <r-loading type="circular" size="24rpx"></r-loading>
      <r-loading type="spinner" size="24rpx"></r-loading>
    </view>
  </r-config-provider>
</template>
<script setup>
import useTheme from "@/hooks/useTheme";
const { themeName } = useTheme();
</script>

API

Props

参数说明类型默认值可选值
color颜色String#c9c9c9
type类型Stringcircularspinner
size图标大小String60rpx
textSize文字大小String28rpx-
textColor文字颜色String#c9c9c9-
vertical是否垂直排列图标和文字内容Booleanfalsetrue
themeNamer-theme 的主题名称Stringdefault

Slots

名称说明
default加载文案
icon自定义加载图标

更多组件,请前往rainui