Git Product home page Git Product logo

Comments (4)

AniaKru95 avatar AniaKru95 commented on August 19, 2024 1

Thanks a lot for your help!

For the future I leave my solution for vue3+vite+typescript

I have to declare module in file vite-env.d.ts and the export it

declare module "v3-infinite-loading" {
    import type {DefineComponent} from 'vue'
    const component: DefineComponent<{}, {}, any>
    export default component
}

Now, everything works as expected :)

from vue3-infinite-loading.

oumoussa98 avatar oumoussa98 commented on August 19, 2024

v3-infinite-loading is generated in javaScript for now that's why, but will use typescript instead very soon.
You can add this line to your env.d.ts file or create one if you haven't already to suppress the error

declare module "v3-infinite-loading";

from vue3-infinite-loading.

AniaKru95 avatar AniaKru95 commented on August 19, 2024

Thanks for your reply.
I've added declaration for env.d.ts - issue dissapeared, but unfortunately infinite-loading is still unrecognized.
obraz

<template>
      <v-table id="intftable">
           <tbody>
                  <tr v-for="item in store.dataset" :key="item.id">
                        <td> {{ item.name}} </td>
                  </tr>
          </tbody>
      </v-table>
      <InfiniteLoading @infinite="load" target="#intftable"></InfiniteLoading>
</template>
<script setup lang=ts>
const PER_PAGE = 5
const page = ref(1)

const load = ($state: any) => {
            console.log('loading....')
                if (page.value <= state.dataset.length){
                        page.value += PER_PAGE
                        $state.loaded()
                }
                else{
                         $state.complete()
                }
}
</script>

I choosed option with global importing.
My component is rendered properly but Infinite loading is not starting, console log in function load does not print

from vue3-infinite-loading.

oumoussa98 avatar oumoussa98 commented on August 19, 2024

Just because you registered it as infinite-loading not InfiniteLoading try to rename it the template

from vue3-infinite-loading.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.