33 lines
551 B
Vue
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>
|