vue-pull-refresh icon indicating copy to clipboard operation
vue-pull-refresh copied to clipboard

pullDownHeight is not working in the configuration object

Open WaldemarEnns opened this issue 6 years ago • 0 comments

I tried it just like the documentation tells me to do: config: { pullDownHeight: 20 }

Doesn't work, seems that it gets completely ignored.

Here is my setup:

<vue-pull-refresh :on-refresh="loadNewImages" :config="pullConfig">...</vue-pull-refresh>

...

<script>
...
pullConfig: {
                    errorLabel: "Beim Laden der Bilder ist ein Fehler aufgetreten ...",
                    startLabel: "Bilder nachladen",
                    readyLabel: "Zum Nachladen loslassen",
                    loadingLabel: "Lade Bilder ..."
                },
...
</script>

WaldemarEnns avatar May 22 '19 23:05 WaldemarEnns