Files
FE_CPONE/test/vuex/pemeriksaan01/components/oneFoOrderListV1.vue
2026-04-27 10:13:31 +07:00

33 lines
551 B
Vue

<template>
<v-layout row wrap>
<v-flex xs6 class="left">
Left
</v-flex>
<v-flex xs6 class="right" >
<nota-box> </nota-box>
<v-flex grow >
<notadetail-box> </notadetail-box>
</v-flex>
</v-flex>
</v-layout>
</template>
<style scoped>
.left {
background-color:white;
}
.right {
background-color:white;
}
</style>
<script>
module.exports = {
components : {
'nota-box' : httpVueLoader('./notaBoxV1.vue'),
'notadetail-box' : httpVueLoader('./notadetailBoxV1.vue'),
}
}
</script>