hagerMore.vue
802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!--
* @Date: 2024-09-29 10:31:01
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-11-05 09:42:21
* @FilePath: /hager/src/components/hagerMore.vue
* @Description: 文件描述
-->
<template>
<div class="hager-more no-select">
<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;
transition: background-color .25s ease-in-out;
&:hover {
cursor: pointer;
background-color: #ff8f33;
}
}
</style>