1.0.2 • Published 2 years ago

v-scroll-view v1.0.2

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

vue 视图滚动容器

-

原作者

  • levy

创建时间

  • 2022-3-1

第一步 安装依赖

npm install v-scroll-view

第二步 引用组件

<template>
  <v-scroll-view
    :x=""                       // x轴滚动-默认true
    :y=""                       // y轴滚动-默认true
    :width=""                   // 宽度设置-默认100%
    :height=""                  // 高度设置-默认100%
    :slidingBgClassName=""      // 滚动条底层样式className
    :slidingBlockClassName=""   // 滚动条滑动块样式className
    :minLong=""                 // 滚动条滑动块最小长度-默认12
  >
    <div>
      //内容
    </div>
  </v-scroll-view>
</template>

<script>
import vScrollView from "v-scroll-view";
export default {
  components: {
    vScrollView
    // ......
  }
  // ......

};
</script>

更新时间

  • 2022-3-1 (levy)
1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago