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

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>