mirror of
https://github.com/tenrok/vue-meta.git
synced 2026-05-20 19:17:58 +03:00
05b8891110
fix: boolean attributes client side
17 lines
198 B
Vue
17 lines
198 B
Vue
<template>
|
|
<div>
|
|
<h2>About</h2>
|
|
<router-link to="/">Go to Home</router-link>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
metaInfo() {
|
|
return {
|
|
title: 'About'
|
|
}
|
|
}
|
|
}
|
|
</script>
|