Files
2023-11-14 17:21:03 +08:00

45 lines
673 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!--
@name: index
@author: kahu4
@date: 2023-11-06 18:08
@descriptionindex
@update: 2023-11-06 18:08
-->
<script setup>
</script>
<template>
<view class="load-over flex flex-ai__center flex-jc__center">
<view class="line"></view>
<view class="text">
<slot>
到底了
</slot>
</view>
<view class="line"></view>
</view>
</template>
<style
scoped
lang="scss"
>
.load-over {
font-size: 28rpx;
position: relative;
color: $tips-color;
.line {
width: 130rpx;
height: 2rpx;
border-radius: 2rpx;
background: $tips-color;
}
.text {
@include usePadding(30, 20)
}
}
</style>