zoukankan      html  css  js  c++  java
  • vueinfinitescroll支持vue3

    vue3-infinite-scroll-good

    简介 (introduce)

    vue-infinite-scroll的vue3版本,所有用法和vue-infinite-scroll一致。
    vue3 version of vue-infinite-scroll. All usages are consistent with vue-infinite-scroll

    其代码也是基于它做了简单修改,并修复了一些bug,比如重复两次请求等问题。
    The code is also based on it, made simple modifications, and fixed some bugs, such as repeated requests twice.

    示例 (Example)

    预览效果:Demo
    preview:Demo

    示例源码:在根目录下的example中
    Example source code: in example under the root directory

    安装 (install)

    yarn add vue3-infinite-scroll-good
    

    使用 (use)

    // 全局注册 mian.js
    import infiniteScroll from 'vue3-infinite-scroll-good'
    createApp(App).use(infiniteScroll).mount('#app');
    
    // 组件使用
    <div v-infinite-scroll="loadMore" infinite-scroll-disabled="busy" infinite-scroll-distance="10">
      ...
    </div>
    var count = 0;
    
    new Vue({
      el: '#app',
      data: {
        data: [],
        busy: false
      },
      methods: {
        loadMore: function() {
          this.busy = true;
    
          setTimeout(() => {
            for (var i = 0, j = 10; i < j; i++) {
              this.data.push({ name: count++ });
            }
            this.busy = false;
          }, 1000);
        }
      }
    });
    

    其他(other)

    喜欢就给个star
    Give a star if you like

    百度甲乙丙丁少
    Google甲乙丙丁少

  • 相关阅读:
    github设置添加SSH
    pythonanywhere笔记
    Python3x 爬取妹子图
    python3.4 百度API接口
    简易博客开发(8)----django1.9 博客部署到pythonanywhere上
    Python3.4+Django1.9+Bootstrap3
    docker搭建私有仓库之harbor
    docker新手常见问题和知识点
    node之sinopia搭建本地npm仓库
    rancher-HA快速搭建
  • 原文地址:https://www.cnblogs.com/dshvv/p/15622770.html
Copyright © 2011-2022 走看看