Skip to content

UttamRahane/V-InfiniteScroll

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

V-InfiniteScroll

Infinite scroll directive using vue and typescript.

Usage

<template>
   <div v-InfiniteScroll="showMore"></div>
</template>

<script lang="ts">
import { Component } from 'vue-property-decorator';
import InfiniteScroll from '../InfiniteScroll';

@Component({
   directives: { InfiniteScroll },
})
export default class DemoComponent extends Vue {
   showMore(){
    // fetch more records
  }
}
</script>

About

Infinite scroll in vue and typecript

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published