Like react-helmet, a HTML head manager for Vue, edit the page title easily!
The dist folder contains
vue-helmet.jsandvue-helmet.min.jswith the component exported in thewindow.VueHelmetobject.
<script src="path/to/vue.js"></script>
<script src="path/to/vue-helmet.js"></script>
<script>
    Vue.use(VueHelmet);
    var vm = new Vue({
        el: "body"
    });
</script>$ npm install --save vue-helmetvar VueHelmet = require('vue-helmet');
new Vue({
  components: {
    'vue-helmet': VueHelmet
  }
})import VueHelmet from 'vue-helmet'
new Vue({
  components: {
    VueHelmet
  }
})| Prop | Type | Example | 
|---|---|---|
| html-attributes | Object | :html-attributes="{'lang': 'zh-CN'}" | 
| title | String | title="New Title Here" | 
| base | Object | :base="{'target': '_blank', 'href': 'http://a.d.c'}" | 
| meta | Object | :meta="{'description': 'New Description Here.'}" | 
| links | Array | :links="[{'rel': 'canonical', 'href': 'http://a.b.c'}]" | 
| scripts | Array | :scripts="[{'type': 'text/javascript', 'src': 'http://abc.xyz/filename.js'}]" |