Hello, is it possible to dynamically update props inside an async fetch after the page has loaded? Here is an example:
props: {
products: {
type: Array,
required:true
}
}
async fetch() {
let data = this.products
// Perform data processing for display....
}
methods: {
updateProducts() {
return this.products.push(newdata);
}
}
How can I update `this.products` within the `async fetch` function with new data?