Skip to content

Instantly share code, notes, and snippets.

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

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

Select an option

Save thulioph/bdc337839a6b2853b9a3100cb4e6ef8f to your computer and use it in GitHub Desktop.
Post sobre o Vuejs.
<template>
<div>
<h4>{{ address }}</h4>
</div>
</template>
<script>
export default {
props: {
address: {
type: String,
required: true
}
},
data() {
return {
address: ''
};
}
};
</script>
<style></style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment