2
0
mirror of https://github.com/tenrok/vue-meta.git synced 2026-05-20 19:17:58 +03:00
Files
vue-meta/test/fixtures/basic/views/about.vue
T
pimlie 05b8891110 test: add e2e tests
fix: boolean attributes client side
2019-03-12 10:03:46 +01:00

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>