19 lines
335 B
Vue
19 lines
335 B
Vue
<template>
|
|
<v-flex xs6>
|
|
<nota-box> </nota-box>
|
|
<v-flex grow >
|
|
<notadetail-box> </notadetail-box>
|
|
</v-flex>
|
|
</v-flex>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
module.exports = {
|
|
components : {
|
|
'nota-box' : httpVueLoader('./notaBoxV1.vue'),
|
|
'notadetail-box' : httpVueLoader('./notadetailBoxV1.vue'),
|
|
}
|
|
}
|
|
</script>
|