ktquez / vue-head

Manager the meta information of the head tag, a simple and easy way
MIT License
984 stars 73 forks source link

REMOVAL OF DEFAULT HEAD COMPLEMENT #98

Closed enyoghasim closed 3 years ago

enyoghasim commented 3 years ago

like react helmet is there a way of removing the complement of the default page title on all pages???

your answers will be helpful thanks in advance

ktquez commented 3 years ago

Hi @enyoghasim

You can do this when installing:

Vue.use(VueHead, {
  separator: "",
  complement: ""
});
ktquez commented 3 years ago

if it's not working, you can see another solution in this issue #94

enyoghasim commented 3 years ago

ok thanks man