mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
31 lines
652 B
Vue
31 lines
652 B
Vue
<template>
|
|
<div class="zan-loading">
|
|
<span class="zan-loading__spinner" :class="['zan-loading__spinner--' + type, 'zan-loading__spinner--' + color]"></span>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
const VALID_TYPES = ['gradient-circle', 'circle'];
|
|
const VALID_COLORS = ['black', 'white'];
|
|
export default {
|
|
name: 'zan-loading',
|
|
|
|
props: {
|
|
type: {
|
|
type: String,
|
|
default: 'gradient-circle',
|
|
validate(value) {
|
|
return VALID_TYPES.indexOf(value) > -1;
|
|
}
|
|
},
|
|
color: {
|
|
type: String,
|
|
default: 'black',
|
|
validate(value) {
|
|
return VALID_COLORS.indexOf(value) > -1;
|
|
}
|
|
}
|
|
}
|
|
};
|
|
</script>
|