We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d11a39 commit 5388749Copy full SHA for 5388749
packages/docs/src/examples/v-infinite-scroll/usage.vue
@@ -9,7 +9,6 @@
9
<div>
10
<v-infinite-scroll
11
v-bind="props"
12
- :items="items.value"
13
@load="load"
14
>
15
<template v-for="(item, index) in items" :key="item">
@@ -64,7 +63,7 @@
64
63
})
65
66
const code = computed(() => {
67
- return `<v-infinite-scroll${propsToString(props.value, ['items'])}>${slots.value}</v-infinite-scroll>`
+ return `<v-infinite-scroll>${slots.value}</v-infinite-scroll>`
68
69
70
const script = computed(() => {
0 commit comments