Matthew Kirkley
Matthew Kirkley
Hello, I tracked this bug down to ScrollContainer.js The `getDistanceFromTop` method returns `this.container.scrollTop || this.container.pageYOffset`. If you are at position 0 and you are spying on the window, then this.container.scrollTop...
If I have time this evening I can patch a submit a merge request, no promises though
One way around this is to import the single file vue component from the source of this package import VueCircle from 'vue2-circle-progress/src/index.vue' In this case the render function will be...
I am experiencing this as well..
Probably related. If you are using async data and expand a node the load data call is called twice as well.
What I am doing is ``` import _ from 'underscore' const debouncedItemToggle = _.debounce((model) => { // do what you need to do }, 250); export default { .... .......
@sburr see what I posted above as a workaround. You will have to debounce the call to load your children so it only happens once. Dirty, but effective.
This repo may interest you if you don't want to import more libs https://github.com/you-dont-need/You-Dont-Need-Lodash-Underscore On Fri, Jan 4, 2019, 2:44 PM Steven Burr Thank you. I did read that but...
> > What I am doing is > > ``` > > import _ from 'underscore' > > > > const debouncedItemToggle = _.debounce((model) => { > > // do...