Robin

Results 220 comments of Robin

For it to work bidirectionally, I think we need something like this: ```ts const htmlLang = useElementAttrs(selector, 'lang'); ```

It was on hold > Slowing down new functions > > As the VueUse audience continues to grow, we have been inundated with an overwhelming number of feature requests and...

might be related to: https://github.com/vueuse/vueuse/pull/4574

I can't speak for the whole team, but bear in mind > As the VueUse audience continues to grow, we have been inundated with an overwhelming number of feature requests...

Looks like this is fixed. I can't reproduce the error with the latest nuxt version.

> First of all, I don't think this is a bug. I think this is a personalized requirement. Thats right, but I think it should be an easy fix to...

> The native input is also the right-click button will close the dialog of the time selector I think this is focus-related. For modals, you usually trap focus inside.

I dont think the `customEvent` approach will work as I expected because we cant handle all events in the same way. Perhaps we should only implement the right-click context menu....

> emm,you can try by yourself! Maybe, it's my mistake.But,I try many times.It's so that the restult is empty. This issue is reproducable without a reproduction. Feel free to reopen...

```ts const vDirectiveScopes = new WeakMap(); export const vDirective = { mounted(target, binding) { const scope = vDirectiveScopes.get(target) ?? effectScope() vDirectiveScopes.set(target, scope) scope.run(()=> { // call composable to setup its...