index.vue
588 Bytes
<!--
* @Date: 2024-08-27 10:06:30
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2024-09-26 14:42:54
* @FilePath: /hager/src/views/index.vue
* @Description: 文件描述
-->
<template>
<div>
<div v-for="(item, index) in 100" :key="index">
<div style="height: 5rem;">{{ index + 1 }}</div>
</div>
</div>
</template>
<script>
import mixin from '@/common/mixin'
export default {
mixins: [mixin.init],
components: {},
data () {
return {
}
},
async mounted () {
},
methods: {
}
}
</script>
<style lang="less" scoped>
</style>