troxler / vue-headful

Set document title and meta tags with Vue.js
MIT License
229 stars 17 forks source link

meta tags are not showing in view page resource #11

Closed Sakthi002 closed 5 years ago

troxler commented 5 years ago

Can you be more specific? Do you use server-side rendering or prerendering?

Sakthi002 commented 5 years ago

I am using Vue with laravel and i rendering all my vue components in one blade file.

Sakthi002 commented 5 years ago

Screenshot (52)

Sakthi002 commented 5 years ago

seo

Sakthi002 commented 5 years ago

Reso

troxler commented 5 years ago

I don't see any <meta name="description"/> (or similar) in your code. vue-headful does not add any meta elements to the DOM, it only updates attributes if the elements are already in the DOM. In addition to that, both title and description seem to be undefined in your example.

Sakthi002 commented 5 years ago

thank you.