mirror of
https://github.com/kuaifan/dootask.git
synced 2025-12-12 19:35:50 +00:00
15 lines
251 B
Vue
15 lines
251 B
Vue
<template>
|
|
<div class="content-loading">
|
|
<Icon v-if="error === true" type="ios-alert-outline" />
|
|
<Loading v-else/>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
export default {
|
|
props: {
|
|
error: Boolean,
|
|
},
|
|
}
|
|
</script>
|