Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2020
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <template>
  2. <div>
  3. <div>{{ nama }}</div>
  4. <div>{{ umur }}</div>
  5. </div>
  6. </template>
  7.  
  8. <script>
  9. export default {
  10. name: 'test',
  11. data () {
  12. return {
  13. nama: 'ucup',
  14. umur: '18'
  15. }
  16. }
  17. }
  18. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement