19 lines
372 B
Vue
19 lines
372 B
Vue
|
|
<template>
|
|
<v-container fluid grid-list-md >
|
|
<v-layout row wrap>
|
|
|
|
<left-box></left-box>
|
|
<right-box></right-box>
|
|
|
|
</v-layout>
|
|
</v-container>
|
|
</template>
|
|
<script>
|
|
module.exports = {
|
|
components : {
|
|
'left-box' : httpVueLoader('./foTestLeft.vue'),
|
|
'right-box' : httpVueLoader('./foTestRight.vue'),
|
|
}
|
|
}
|
|
</script> |