0👍
Is the mostrar-productos
component getting [name
, stock
, price
] as props?
receive values as props, you need to update the component as follows.
export default {
name: 'mostrarProductos',
props: {
name: {
type: String,
default: () => '',
},
stock: {
type: Number,
default: () => 0,
},
price: {
type: Number,
default: () => 0,
}
}
...
}
- [Vuejs]-Vuetify Autocomplete with Axios Query not working – VueJS
- [Vuejs]-How can extract css from nuxt version3 in build stage
Source:stackexchange.com