Skip to content

Instantly share code, notes, and snippets.

@reginaldojunior
Created June 5, 2018 19:51
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 reginaldojunior/db92d6573fe9b54a23974ad3f5bd9a81 to your computer and use it in GitHub Desktop.
Save reginaldojunior/db92d6573fe9b54a23974ad3f5bd9a81 to your computer and use it in GitHub Desktop.
Component.vue
<template>
<div>
{{product.name}}
</div>
</template>
<style scoped>
</style>
<script>
export default {
name: 'table-price',
data () {
product: {
name: "Teste"
}
},
methods: {
oneMethod () {
// faz algo
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment