Grigorii K. Shartsev
Grigorii K. Shartsev
> How about the header bar? Should be different for mobile at least.
We can also use `this.$options.el` to idintificate, that inputs are in different vue instances
With using jQuery it could be ``` $(this.$options.el).find('[v-model]').each(function(idx, obj) { let $obj = $(obj); lodash.set(data, $obj.attr('v-model'), $obj.val()); }); ``` but it should be without jQuery. I can make a PushRequest...
Vue 3 already has `emits` option with list of emitted events. One of two main roles (as I see it) is helping IDE and other development tools. Vue has `props`...
At least in Vue 2 (and it seems to me in Vue 3 too) it's possible to build a component as a Web Component. With `@vue/cli` you just need to...
1. On the call, start following somebody and open stripe 2. Start screensharing from another participant 3. Stop screensharing 4. No you are on the grid view instead of the...
Not sure it is related, but caught an exception: ``` TypeError: Cannot read properties of null (reading 'attributes') at VueComponent.shouldShowPresenterOverlay ``` on this line https://github.com/nextcloud/spreed/blob/79bd33fdcc5de6041f628e699694dd90baf68484/src/components/CallView/CallView.vue#L325
Pushed an update: - Made dependencies inline with `main` - Updated `@nextcloud/vue` to `alpha.6` - Fixed breaking change in imports
> This makes it still local to the app The question is, do we want to make it globally across the apps? 1. On one hand, it may solve a...
Then can we store the value for the default selector in the `window`, similar to `@nextcloud/l10n`? https://github.com/nextcloud/nextcloud-l10n/blob/186d34ae2eb53cab52779306d5d52cea35966acc/lib/registry.ts#L69