Nicolas Udy

Results 7 comments of Nicolas Udy

@JeanSebTr Just `npm run lint` and you're good to go. I dont have permission to push new branches but it's a quick fix.

I believe the only necessary step for this would be to re-export the types from Panzoom, they're all declared in there.

After digging a bit, I can see that part of the issue is caused by `styles.getPostCssConfig()` provided by `"@ckeditor/ckeditor5-dev-utils"` returning an array of plugins. I set up a reducer to...

Wondering the same. Why is it using such an old version of axios?

I'm under the impression this package is no longer maintained. Main issue is the version wasn't bumped from `1.0.1`. Anyone have any alternatives they recommend when working with nuxt? I...

In practice I have often found that when trying to access refs from the `mounted()` hook I need to do this ``` this.$nextTick(() => { this.$refs.gmap.$mapCreated.then(() => { this.$refs.gmap.$mapObject.fitBounds(this.googleMapBounds); })...