You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
397 B
24 lines
397 B
<template>
|
|
<cl-icon class-name="cl-loading cl-icon-loading" :color="color" :size="size" />
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from "vue";
|
|
|
|
export default defineComponent({
|
|
name: "cl-loading",
|
|
|
|
props: {
|
|
// 图标颜色
|
|
color: {
|
|
type: String,
|
|
default: "primary",
|
|
},
|
|
// 图标大小
|
|
size: {
|
|
type: [String, Number],
|
|
default: 40,
|
|
},
|
|
},
|
|
});
|
|
</script>
|
|
|