Skip to content
On this page

ScrollArea

基础用法

vue
<template>
  <div class="width:300px;height:200px;">
    <GScrollArea >
      <p v-for="i in 100">Guava {{ i }}</p>
    </GScrollArea>
  </div>
</template>

<script lang="ts" setup>
import { GScrollArea } from '@lingjhf/guava-vue'
</script>