Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Last active June 6, 2018 18:28
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/0c27061fb7c75faf074dd78e35bcd423 to your computer and use it in GitHub Desktop.
Save uno-de-piera/0c27061fb7c75faf074dd78e35bcd423 to your computer and use it in GitHub Desktop.
<template>
<div class="container">
<h1 class="text-center text-muted">{{ hello_world }}</h1>
</div>
</template>
<script>
export default {
data () {
return {
hello_world: 'Hola Mundo!!!!'
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment