24 lines
607 B
Vue
24 lines
607 B
Vue
<template>
|
|
<v-layout row wrap >
|
|
<v-flex xs12 sm6 class="left" fill-height pa-1>
|
|
<!-- komponen kiri -->
|
|
<order-left-side></order-left-side>
|
|
</v-flex>
|
|
|
|
<v-flex xs12 sm6 class="right" fill-height pa-1>
|
|
<!-- komponen kanan -->
|
|
<order-right-side></order-right-side>
|
|
</v-flex>
|
|
</v-layout>
|
|
</template>
|
|
|
|
<script>
|
|
module.exports = {
|
|
components : {
|
|
'order-left-side' : httpVueLoader('./orderLeftSide.vue'),
|
|
'order-right-side' : httpVueLoader('./orderRightSide.vue')
|
|
}
|
|
}
|
|
</script>
|
|
|