Leonardo Piccioni de Almeida

Results 16 comments of Leonardo Piccioni de Almeida

Some time ago, I was interested in creating a Vetur integration with Quasar framework by @rstoenescu (which I delayed as it approaches 0.15 and 1.0). As Quasar is deliberately huge,...

> Composition API is also Vue3 only I believe, so that's another thing to keep in mind. FYI Vue 2.x supports the Composition API natively since 2.7 (released weeks ago)....

The syntax error is probably caused by compiler not knowing ES6(?) syntax (`export` keyword). You could try one of Bootstrap's official Meteor packages (`twbs:bootstrap` or `twbs:bootstrap-noglyph`), that works like a...

Bootstrap is just a CSS "framework", that needs some JS to get some fancy behavior. The original implementation uses jQuery (definitely not a fan), but it was ported to vanilla...

I've created a PR, because I also need this feature. My use case is that my code includes a HTML entities parser, and escaping all those Unicode characters adds several...

I think that, if we switch the tests from ```html ``` to ```html ``` it may work. I'll try it tomorrow. If it works, I'll open a PR to the...

I couldn't still make the tests run on my machine, by, looking at the code, it seems that the event names are indeed converted to camel-case ([`toHandlers`](https://github.com/vuejs/core/blob/main/packages/runtime-core/src/helpers/toHandlers.ts) call [`toHandlerKey`](https://github.com/vuejs/core/blob/v3.2.33/packages/shared/src/index.ts#L131-L133)), what...

The biggest challenge about manually implementing a behavior similar to `forwardRef` in Vue, currently, is the fact that refs returned by `setup` are unwrapped inside template ([docs](https://v3.vuejs.org/guide/composition-api-setup.html#usage-with-templates)). However, as mentioned...

> Yeah, we do will face these problems. But the forwardRef API is not about if we can get the element, it's about what behavior ref prop will do. The...

I don't know if this is a good idea, for two reasons: 1. Encapsulation (components lose control over their own public API, making any change a potential breaking change); 2....