0.0.2-alpha11 • Published 3 years ago

vue-touch-scroll v0.0.2-alpha11

Weekly downloads
4
License
MIT
Repository
github
Last release
3 years ago

vue-touch-scroll

GitHub license PRs Welcome

A plugin scroll cross browser for Vue.js

Table of Contents

Installation

npm install vue-touch-scroll

or if you prefer CDN

<script type="text/javascript" src="https://unpkg.com/vue-touch-scroll@latest/dist/vue-touch-scroll.js"></script>

Usage

Global

import { use } from "vue"
import VueTouchScroll from "vue-touch-scroll"

use(VueTouchScroll)
<vue-touch-scroll type="vertical">
   <!-- Content -->
</vue-touch-scroll>

or

<div v-touch-scroll:vertical>
   <!-- Content -+>
</div>

Private

<vue-touch-scroll type="vertical">
   <!-- Content -->
</vue-touch-scroll>

<script>
   import { VueTouchScroll } from "vue-touch-scroll"
   
   export default {
      components: { VueTouchScroll }
   }
</script>

or

<div v-touch-scroll:vertical>
   <!-- Content -+>
</div>

<script>
   import { directive } from "vue-touch-scroll"
   
   export default {
      directives: {
         "touch-scroll": directive
      }
   }
</script> 

Configuration

Component

PropertyTypeDefaultDescription
tagString"div"A tag name for component
typeString"vertical"Direction scroll "vertical" or "horizontal"
hide-scrollbarBooleanfalseAre you hide scrollbar?
class-scrollbarString, Array, Object""Class for scrollbar
style-scrollbarObject{}Style for scrollbar

Directive

<div v-touch-scroll:arg="value"></div>
PropertyDescription
arg= option type in component
value= option scrollbar

Options sscrollbar

<div v-touch-scroll:vertical="{
   render: true, // render scrollbar?
   class: [] // class for scrollbar,
   style: {}
}"></div> 

License

This project is licensed under the MIT License - see the LICENSE.md file for details.

0.0.2-alpha11

3 years ago

0.0.2-alpha10

4 years ago

0.0.2-alpha9

4 years ago

0.0.2-alpha8

4 years ago

0.0.2-alpha6

4 years ago

0.0.2-alpha5

4 years ago

0.0.2-alpha4

4 years ago

0.0.2-alpha3

4 years ago

0.0.2-alpha2

4 years ago

0.0.2-alpha1

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago