hagerLoadMore.vue 1002 Bytes
<!--
 * @Date: 2024-09-29 10:31:01
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2024-11-05 09:43:08
 * @FilePath: /hager/src/components/hagerLoadMore.vue
 * @Description: 文件描述
-->
<template>
  <div class="hager-load-more">
    <div class="get-more no-select">
      <div class="btn">加载更多</div>
    </div>
  </div>
</template>

<script>
import mixin from 'common/mixin';

export default {
  mixins: [mixin.init],
  data () {
    return {

    }
  },
  mounted () {

  },
  methods: {

  }
}
</script>

<style lang="less" scoped>
  .hager-load-more {
    .get-more {
      display: flex;
      justify-content: center;
      .btn {
        background-color: #F56400;
        color: #fff;
        padding: 1rem 2rem;
        width: 5rem;
        margin-bottom: 2rem;
        transition: background-color .25s ease-in-out;
        text-align: center;
        &:hover {
          background-color: #ff8f33;
          cursor: pointer;
        }
      }
    }
  }
</style>