vue-simple-scroller
TypeScript icon, indicating that this package has built-in type declarations

1.0.14 • Public • Published

vue-simple-scroller

Installation

npm i vue-simple-scroller -D

API

Property Description Type Default Required
height container height string 100% false
loading show loading slot boolean false false
isEnd show end slot boolean false false

event

Events Name Description Arguments Version
on-end triggered when the container reaches the bottom (event) => void
on-top triggered when the container reaches the top (event) => void

Using

main.js

import { createApp } from 'vue'
import App from './App.vue'

import VueSimpleScroller from 'vue-simple-scroller';
import 'vue-simple-scroller/dist/style.css';

createApp(App).use(VueSimpleScroller).mount('#app')

Example

demo.vue

<script setup lang="ts">
import { ref } from 'vue'

const isTop = ref(false);
const isEnd = ref(false);
const loading = ref(false);

const handleTop = () => {
  console.log('top~~~')
};
  
const handleEnd = () => {
  console.log('end~~~')
};
</script>

<template>
  <vue-simple-scroller height="100px" @on-end="handleEnd" @on-top="handleTop" :is-end="isEnd" :loading="loading">
    <template v-slot:isTop>
      <div style="text-align: center">top~</div>
    </template>
    <template v-slot:isEnd>
      <div style="text-align: center">end~</div>
    </template>
    <template v-slot:loading>
      <div>loading...</div>
    </template>
    <div
        v-for="(item, index) in 100"
        :key="index"
    >
      {{ item }}
    </div>
  </vue-simple-scroller>
</template>

/vue-simple-scroller/

    Package Sidebar

    Install

    npm i vue-simple-scroller

    Weekly Downloads

    0

    Version

    1.0.14

    License

    MIT

    Unpacked Size

    7.44 kB

    Total Files

    7

    Last publish

    Collaborators

    • zhou_zhu