Skip to content

Instantly share code, notes, and snippets.

@DeaVenditama
Created October 21, 2020 15:00
Show Gist options
  • Save DeaVenditama/be05354608b1040d8520c8c05ef75d3d to your computer and use it in GitHub Desktop.
Save DeaVenditama/be05354608b1040d8520c8c05ef75d3d to your computer and use it in GitHub Desktop.
<template>
<h1>Loops</h1>
<table border=1>
<tr v-for="hari in namaHari" v-bind:key="hari">
<td>{{ hari }}</td>
</tr>
</table>
</template>
<script>
export default {
data(){
return{
namaHari : ["Senin", "Selasa", "Rabu", "Kamis",
"Jumat", "Sabtu", "Minggu"
]
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment