Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

not working in table td element #160

Open
Skura23 opened this issue Jan 8, 2022 · 1 comment
Open

not working in table td element #160

Skura23 opened this issue Jan 8, 2022 · 1 comment

Comments

@Skura23
Copy link

Skura23 commented Jan 8, 2022

vue-infinite-scroll does not workin table td element

@Marsovski
Copy link

@Skura23 try this

      <div v-infinite-scroll="loadMore" infinite-scroll-disabled="busy" infinite-scroll-distance="10">
        <table>
          <thead>
          <tr>
            <th>
              Title
            </th>
          </tr>
          </thead>
          <tbody>
            <tr v-for="(row, index) in data" :key="index">
              <td>
                <h4>{{ row }}</h4>
              </td>
            </tr>
          </tbody>
        </table>
      </div>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants