Barthélémy Ledoux

Results 184 comments of Barthélémy Ledoux

I believe also that the initial problem mentioned in the ticket was fixed another way. @marktnoonan could you confirm that so that @Manuel-Suarez-Abascal does not have to needlessly rebase his...

I found this old issue that throws the same error. Maybe that helps https://github.com/cypress-io/cypress/issues/8477

If you want to keep rectivity, you might what to replace ```js this[key] = value; ``` with ```js this[key] = Vue.observable(value); ```

Thank you @shwarcu, There is a change you have to do to your example for the types to work. You are missing the extension of the declaration file you triple...

The solution I advocate for is to add the data attribute to every tag in there. This will avoid style bleeding.

in the [demo of vue-live](http://vue-live.surge.sh/) the data attributes seem to be added to the right objects. I might need a reproduction repo. Would you mind creating one please ?

Have you tried using [deep selectors](https://vue-loader.vuejs.org/guide/scoped-css.html#deep-selectors)? I have implemented them in the compiler in [3.23.0](https://github.com/vue-styleguidist/vue-styleguidist/blob/dev/CHANGELOG.md#3230-2019-09-19) which might not be up to date on vue-live yet. I would be open to...

Thank you Austin for the report. Did you check what version made that change? PS: I am happy to see you are still using `vue-live`. I have left it alone...

How about disabling eslint code action from eslint in Vue files? Keeping only vetur actions. ```json { "editor.codeActionsOnSave": { "source.fixAll.eslint": true }, "[vue]": { "editor.codeActionsOnSave": { "source.fixAll.eslint": false } },...

It seems to work and keep both extensions at bay.