34 lines
486 B
Vue
34 lines
486 B
Vue
<template>
|
|
<v-layout row wrap>
|
|
<v-flex xs6 fill-height class="left">
|
|
<hasil-box> </hasil-box>
|
|
</v-flex>
|
|
|
|
<v-flex xs6 class="right" fill-height>
|
|
<kirim-box> </kirim-box>
|
|
</v-flex>
|
|
|
|
</v-layout>
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
.judul {
|
|
font-size: 2em;
|
|
font-weight: bold;
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
|
|
</style>
|
|
|
|
<script>
|
|
module.exports = {
|
|
components : {
|
|
'hasil-box' : httpVueLoader('./hasilBoxV1.vue'),
|
|
'kirim-box' : httpVueLoader('./kirimBoxV1.vue'),
|
|
}
|
|
}
|
|
</script>
|