29 lines
508 B
Vue
29 lines
508 B
Vue
<template>
|
|
<section class="AiLoading">
|
|
<image :src="image"/>
|
|
<span>{{ tips }}</span>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: "AiLoading",
|
|
props: {
|
|
tips: {default: "应用加载中"},
|
|
image: {default: "https://cdn.cunwuyun.cn/wxAdmin/img/message.png"}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.AiLoading {
|
|
font-size: 32px;
|
|
color: #666;
|
|
text-align: center;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
</style>
|