mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 01:11:25 +08:00
c2ecb3a773
- Add more cases for running ssr tests
40 lines
722 B
Vue
40 lines
722 B
Vue
<template>
|
|
<ul
|
|
v-infinite-scroll="load"
|
|
class="infinite-list"
|
|
style="
|
|
overflow: auto;
|
|
height: 300px;
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style: none;
|
|
"
|
|
>
|
|
<li
|
|
v-for="i in count"
|
|
:key="i"
|
|
class="infinite-list-item"
|
|
style="
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 50px;
|
|
background: var(--el-color-primary-light-9);
|
|
margin: 10px;
|
|
color: var(--el-color-primary);
|
|
margin-top: 10px;
|
|
"
|
|
>
|
|
{{ i }}
|
|
</li>
|
|
</ul>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref } from 'vue'
|
|
const count = ref(0)
|
|
const load = () => {
|
|
count.value += 2
|
|
}
|
|
</script>
|