2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-05-18 07:19:38 +03:00
Files
vue-meta/examples/basic/app.js
T
2016-10-31 20:51:34 +02:00

22 lines
365 B
JavaScript

import Vue from 'vue'
import VueMeta from 'vue-meta'
Vue.use(VueMeta)
new Vue({
template: `
<div id="app">
<h1>Basic</h1>
<p>Inspect Element to see the meta info</p>
</div>
`,
metaInfo: {
title: 'Basic',
titleTemplate: '%s | Vue Meta Examples',
htmlAttrs: {
lang: 'en',
amp: undefined
}
}
}).$mount('#app')