Javascript – Accessing Computed Properties in Vue.js
I have a Vue component and I am trying to set the image src. The data is coming from my api. const product = computed(() => { return store.products.find(product => product.slug === route.params.slug); }); const selectedImage = ref(null); function setMainImage(image)…