python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Vue composable loses reactivity
I'm trying to pass reactive data/a ref (limit) into a composable (useItemsShowing()).
Whenever I update limit by pressing the button I want the composable to re-run and give me an updated return value...
Felix
Votes: 0
Answers: 1
Vue3 transform props structure maintaining reactivity
I have a component that gets data from the API and passes it to another component that displays it (passing down again to multiple child components). So I tried to split that information into multiple...
Marc Pont
Votes: 0
Answers: 1
Vue 3 - Composition API - How to get props original value
I have a component that receive some props and emit a custom event. I need the emit to pass the value of the props as a parameter. No matter what I do I always receive a Proxy and not the original val...
Plastic
Votes: 0
Answers: 1
Are reactively declared img alt tags detrimental for SEO?
If instead of declaring the alt tag like so:
<img src="..." alt="banana">
I declare it in a vue component that gets rendered only when the user opens its url:
<template&g...
Artur Müller Romanov
Votes: 0
Answers: 1