for SEO fetch data before render component and set meta details for social sharing links
[issue link]Hello,
i want to fetch the data before render the component.i tried many ways like asyncData, fetch, beforeMount etc.
i tried this way too…
beforeRouteEnter(to, from, next) {
next(vm => {
vm.$store.dispatch('getItemsBySiteId', { id: to.params.id });
vm.$store.dispatch('getSiteDetailById', { id: to.params.id });
});
},
but nothing works well… help me. i need when i share my urls on social networks, it can be happened to see description, title etc from fetched data.