import Vue from 'vue' import VueMeta from 'vue-meta' Vue.use(VueMeta) Vue.component('foo', { template: '

Foo component

', metaInfo: { title: 'Keep me Foo' } }) new Vue({ data() { return { showFoo: false } }, methods: { show() { this.showFoo = !this.showFoo } }, template: `

Kept alive foo

`, metaInfo: () => ({ title: 'Keep-alive' }) }).$mount('#app')