25 lines
297 B
Vue
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>
|