Files
E-Vote/resources/assets/js/components/demo/voter/home/zoom.vue
T
2024-03-12 15:27:16 +08:00

32 lines
530 B
Vue

<template>
<div class="row col-md-10 col-md-offset-1">
<div class="col-md-12">
<h2 class="text-center">Pautan Zoom</h2>
</div>
</div>
</template>
<script>
export default {
created: function () {
//console.log(this)
},
data: function () {
return {
x: {}
}
},
computed: {
header: function () {
return this.x.name + ' for ' + this.getPosition(this.x.position_id);
}
}
}
</script>