mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-05-20 09:59:38 +03:00
18 lines
280 B
Vue
18 lines
280 B
Vue
<template>
|
|
<div id="app">
|
|
<h1>vuex</h1>
|
|
<router-view></router-view>
|
|
<p>Inspect Element to see the meta info</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
metaInfo: {
|
|
meta: [
|
|
{ vmid: 'charset', charset: 'utf-8' }
|
|
]
|
|
}
|
|
}
|
|
</script>
|