index.vue
913 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
<!--
* @Date: 2024-08-27 10:06:30
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-09-26 17:18:46
* @FilePath: /hager/src/views/index.vue
* @Description: 文件描述
-->
<template>
<div>
<hager-box style="background-color: #fff;">
<div v-for="(item, index) in 10" :key="index">
<div style="height: 5rem;">{{ index + 1 }}</div>
</div>
</hager-box>
<hager-box style="background-color: #f1f1f1;">
<div v-for="(item, index) in 10" :key="index">
<div style="height: 5rem;">{{ index + 1 }}</div>
</div>
</hager-box>
</div>
</template>
<script>
import mixin from '@/common/mixin';
import hagerBox from '@/components/common/hagerBox';
export default {
mixins: [mixin.init],
components: { hagerBox },
data () {
return {
}
},
async mounted () {
},
methods: {
}
}
</script>
<style lang="less" scoped>
</style>