2016-07-27 06:15:02 +00:00
|
|
|
<template>
|
|
|
|
<span class="el-spinner">
|
2018-07-15 08:57:05 +00:00
|
|
|
<svg class="el-spinner-inner" viewBox="0 0 50 50" :style="{ width: radius/2 + 'px', height: radius/2 + 'px' }">
|
2016-07-27 06:15:02 +00:00
|
|
|
<circle class="path" cx="25" cy="25" r="20" fill="none" :stroke="strokeColor" :stroke-width="strokeWidth"></circle>
|
|
|
|
</svg>
|
|
|
|
</span>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
|
|
export default {
|
|
|
|
name: 'ElSpinner',
|
|
|
|
props: {
|
|
|
|
type: String,
|
|
|
|
radius: {
|
|
|
|
type: Number,
|
|
|
|
default: 100
|
|
|
|
},
|
|
|
|
strokeWidth: {
|
|
|
|
type: Number,
|
|
|
|
default: 5
|
|
|
|
},
|
|
|
|
strokeColor: {
|
|
|
|
type: String,
|
|
|
|
default: '#efefef'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
</script>
|