Stanislav Lashmanov
Stanislav Lashmanov
@dmfrancisco, thanks, will try!
Maybe readme should now state that browserslist-ga requires for you to create a Google App (with provided instructions), instead of using a public App for that? And remove public App...
Workaround: ```js const [rubyPlugin, ...rest] = RubyPlugin(); const fixedRubyPlugin = [ { ...rubyPlugin, config: (...args) => { const originalConfig = rubyPlugin.config(...args); return { ...originalConfig, resolve: undefined, }; }, }, ...rest,...
@ElMassimo The project structure is the following: ``` / -- /assets -- /js -- /css ``` I want my `~/` alias to point always to `/assets/js`, but to have my...
> I would encourage you use a structure closer to the default, conventions make it easier to understand an unfamiliar codebase. I would really love to, but it's hard when...
This will make it work, but I am not sure how safe it is considering that is doesn't provide back the register callbacks (no idea what they're needed for): ```js...
Having the same issue on Galaxy Tab S7+.
Just to clarify: it's not possible to solve that with Composition, you'll get an error for using a property with the same name as in props. ---- I think this...
`v-model` was given just as an example, this change has actually nothing to do with `v-model` since it doesn't require any special treatment by default. It's also not about components,...
> I'm not totally convinced by those 2 examples that the use-cases justify the extra complexity added to Vue core. > I think you could totally fire an event @update,...