hagerMore.vue 728 Bytes
<!--
 * @Date: 2024-09-29 10:31:01
 * @LastEditors: hookehuyr hookehuyr@gmail.com
 * @LastEditTime: 2024-09-29 10:52:45
 * @FilePath: /hager/src/components/hagerMore.vue
 * @Description: 文件描述
-->
<template>
  <div class="hager-more">
    <i class="el-icon-right"></i> <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: #EE6D10;
    padding: 0.5rem 1rem;
    border: 1px solid #EE6D10;
    border-radius: 4px;
    display: inline-block;
    cursor: pointer;
  }
</style>