You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
438 B
29 lines
438 B
<template> |
|
<div class="NoMore"> |
|
{{ notice }} |
|
</div> |
|
</template> |
|
<script> |
|
export default { |
|
name: "NoMore", |
|
props: { |
|
notice: { |
|
type: String, |
|
default: '暂时没有更多了' |
|
} |
|
}, |
|
} |
|
</script> |
|
|
|
<style scoped lang="scss"> |
|
@import "../assets/scss/index"; |
|
|
|
.NoMore { |
|
font-size: 1.2rem; |
|
height: 6rem; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
color: $second-text-color; |
|
} |
|
</style>
|
|
|