24 lines
333 B
Vue
24 lines
333 B
Vue
|
<template>
|
||
|
<div class="md-scroll-view-more">
|
||
|
更多加载中
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
export default {
|
||
|
name: 'md-scroll-view-more',
|
||
|
|
||
|
// props: {
|
||
|
|
||
|
// }
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style lang="stylus">
|
||
|
.md-scroll-view-more
|
||
|
padding v-gap-lg 0
|
||
|
font-size font-minor-large
|
||
|
text-align center
|
||
|
color color-text-caption
|
||
|
</style>
|
||
|
|