python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Proper way to mutate array in vue 3 composition api
I have a component that receives data from an emit function and I wish to push object's onto an array. The trouble is when I push object onto array the object is empty?? Here is the code :
<script ...

Alan
Votes: 0
Answers: 1
Vue3 - Table not updating after deleting an array item, need to refresh the page to see effect
My table is not updating while I'm removing one of its element.
My Vue page:
<template>
<div class="home">
<div class="py-10">
<header...

Henri
Votes: 0
Answers: 1
using watch function w/prop in Vue3 composition api
I have a component that renders a table of Inventoried computer equipment. Here is the relevant code for initial render:
let oEquiptByType = reactive({
Laptop: [],
iPad: [],
"Document Camer...

Alan
Votes: 0
Answers: 2
Best way to set reactive form data coming from a list in Vue3 with Composition API?
In Vue3 (Composition API) I have a form-component that needs to be filled with data, coming from a datalist-component. In the form-component do the following:
<input
v-model="formdata.formfi...
Dylan
Votes: 0
Answers: 1