qa-deu-tv/components/app-loading/index.vue

34 lines
478 B
Vue
Raw Normal View History

2024-12-13 08:38:32 +08:00
<template>
<view class="loading">
<image
src="/static/loading1000.gif"
mode="aspectFit"
:style="{ width, height }"
/>
</view>
</template>
<script>
export default {
props: {
width: {
type: String,
default: "100vw",
},
height: {
type: String,
default: "100vh",
},
},
};
</script>
<style scoped lang="scss">
.loading {
position: fixed;
z-index: 10;
inset: 0;
background-color: #1d1c37;
}
</style>