hagerMore.vue 665 Bytes
<!--
 * @Date: 2024-09-29 10:31:01
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2024-10-21 11:32:10
 * @FilePath: /hager/src/components/hagerMore.vue
 * @Description: 文件描述
-->
<template>
  <div class="hager-more">
    <span style="font-size: 0.9rem;">MORE</span>
  </div>
</template>

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

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

    }
  },
  mounted () {

  },
  methods: {

  }
}
</script>

<style lang="less" scoped>
  .hager-more {
    color: #FFF;
    padding: 0.9rem 4rem;
    display: inline-block;
    cursor: pointer;
    background-color: #F56400;
  }
</style>