Skip to content

Instantly share code, notes, and snippets.

@thulioph
Created March 31, 2017 17:36
Show Gist options
  • Select an option

  • Save thulioph/b4b47446483a7f0834a560d1192ef390 to your computer and use it in GitHub Desktop.

Select an option

Save thulioph/b4b47446483a7f0834a560d1192ef390 to your computer and use it in GitHub Desktop.
Post sobre o Vuejs.
<template>
<span>{{ message }}</span>
</template>
<script>
export default {
data () {
return {
message: 'Hello!'
}
},
created () {
this.message = 'Bye!'
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment