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

25 lines
297 B
Vue

<template>
<v-layout row wrap>
<v-flex xs6 class="left">
Left
</v-flex>
<v-flex xs6 class="right">
Right
</v-flex>
</v-layout>
</template>
<style scoped>
.left {
background-color:red;
}
.right {
background-color:blue;
}
</style>
<script>
module.exports = {
}
</script>