Skip to main content

All Questions

Tagged with
-1 votes
1 answer
38 views

Vue.js 3 - pass contents of a component's slot to another slot outside it

I have a component Foo with the following contents: <Bar> <template #option="slotProps" v-if="$slots.option"> <slot name="option" v-bind="...
armandino's user avatar
  • 18.6k
0 votes
0 answers
40 views

Why does update in parent component establish reactivity with AG grid?

I'm playing around with Vue Data Grid (AG Grid) and stumbled across a strange behavior wrt reactivity, exemplified by the following minimal component App (plain JS): <script setup> import {...
bisgardo's user avatar
  • 4,668
0 votes
0 answers
40 views

How to render dynamic templates in Vue3

I have this component which I used in vue2 to render templates dynamically. But this stopped working in vue3. I have the code as below. import { defineComponent, h } from 'vue' import { } from '...
Abdul Kadir Khan's user avatar