Created
June 5, 2018 19:51
-
-
Save reginaldojunior/db92d6573fe9b54a23974ad3f5bd9a81 to your computer and use it in GitHub Desktop.
Component.vue
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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