Last active
November 28, 2019 06:55
-
-
Save crookse/b5cd33f07548d8736337f55c8cdab4b6 to your computer and use it in GitHub Desktop.
Vue: Automate Your Routing - contact.vue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template lang="pug"> | |
div | |
h1 {{ $route.meta.title }} | |
p {{ description }} | |
</template> | |
<script> | |
export const route = { | |
paths: ["/contact"], | |
meta: { | |
title: "Contact", | |
} | |
} | |
export default { | |
data() { | |
return { | |
description: "This is my contact page!", | |
}; | |
}, | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment