Last active
November 28, 2019 06:56
-
-
Save crookse/f0a79d6b60f5e8ebb40c0b4321f5b66d to your computer and use it in GitHub Desktop.
Vue: Automate Your Routing - home.vue
This file contains 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: ["/"], | |
meta: { | |
title: "Home", | |
} | |
} | |
export default { | |
data() { | |
return { | |
description: "This is my home page!", | |
}; | |
}, | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment