Responsive issues with Vue3 imperative components #12339
Unanswered
xhc-code
asked this question in
Help/Questions
Replies: 1 comment 14 replies
-
// - const vnode = createVNode('span', null, count.value.toString());
const vnode = h('span', null, h(() => count.value)) // h === createVNode |
Beta Was this translation helpful? Give feedback.
14 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Why isn't the span content of this command based component updated? Not responsive, but count is responsive.
Beta Was this translation helpful? Give feedback.
All reactions