Scott Smith

Results 9 comments of Scott Smith

I looked into it further and I believe I have narrowed it down to the focus event listener being added here: https://github.com/fergaldoyle/vue-form/blob/48a08bb0067c8ade4aa1816b8589084c4c27981f/src/directives/vue-form-validator.js#L89-L91 I have seen consistently that I remove that...

All the solutions noted in here sound as though you are allowing this library to be built via your app's webpack config. That seems like a dangerous path to me....

Could this be solved with slots? Perhaps a default slot for the root element and then a repeated slot for the items within, providing the scoped data one would need...

Alternatively, I was able to use the custom templates with components by writing a render function instead of using the template string. Not ideal, but was able to get past...

Trying to accomplish this in our project as well. Do you think the only fields that need to be serialized on the scheduler are jobs, location, and tagsUnique?

For my current situation, being able to wait for running jobs to complete was enough to get me around this requirement. Our jobs are currently at specific times and are...

@eddyerburgh I could really use that stub option for mount/shallow. I am considering porting it to avoriaz or making the move to vue-test-utils to get it. Not sure which makes...

I started looking this and realized that I may actually want to build upon the renderDefaultSlot option that was added earlier by @disitec. Currently, that option applies only to global...

I realize now this is a pretty old issue, but there is a workaround in case anyone else runs into it. Assuming that the Vuetify components are registered globally, you...