mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 11:19:56 +00:00
25 lines
701 B
Vue
25 lines
701 B
Vue
<template>
|
|
<ETooltip :disabled="windowSmall || $isEEUiApp || content == ''" :content="content">
|
|
<svg v-if="type === 'svg'" viewBox="25 25 50 50" class="common-loading">
|
|
<circle cx="50" cy="50" r="20" fill="none" stroke-width="5" stroke-miterlimit="10" class="common-path"></circle>
|
|
</svg>
|
|
<div v-else class="common-pureing"></div>
|
|
</ETooltip>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'Loading',
|
|
props: {
|
|
type: {
|
|
type: String,
|
|
default: 'svg'
|
|
},
|
|
content: {
|
|
type: [String, Number],
|
|
default: ''
|
|
},
|
|
},
|
|
}
|
|
</script>
|