Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Created January 24, 2019 07:29
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/2d3842c911c02f49ac0f178aca423be7 to your computer and use it in GitHub Desktop.
Save uno-de-piera/2d3842c911c02f49ac0f178aca423be7 to your computer and use it in GitHub Desktop.
<script>
export default {
name: 'home',
data () {
return {
showPage: false,
message: 'HOLA MUNDO CON JSX EN VUEJS 2'
}
},
render (h) {
if (this.showPage) {
return (
<div>{this.message}</div>
)
}
return (
<div>No se puede mostrar la página...</div>
)
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment