Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Last active January 24, 2019 19:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uno-de-piera/84c97f8e951b321a31760549191b2476 to your computer and use it in GitHub Desktop.
Save uno-de-piera/84c97f8e951b321a31760549191b2476 to your computer and use it in GitHub Desktop.
.about {
background: red;
}
export default {
name: 'AboutPage',
data () {
return {
name: 'About Page'
}
},
}
<template>
<div class="about">
<h1>Esta es la página {{ name }}</h1>
</div>
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment