You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

29 lines
667 B

<template>
<a-row :gutter="16">
<a-col :xl="24" :xs="12">
<div class="responsive-box">Content 1</div>
</a-col>
<a-col :xs="12">
<div class="responsive-box">Content 2</div>
</a-col>
<a-col :xs="12">
<div class="responsive-box">Content 3</div>
</a-col>
<!-- <a-col :xl="4">
<div class="responsive-box">Content 2</div>
</a-col>
<a-col :xl="4">
<div class="responsive-box">Content 2</div>
</a-col>
<a-col :xl="4">
<div class="responsive-box">Content 2</div>
</a-col> -->
</a-row>
</template>
<style>
.responsive-box {
background-color: #f0f0f0;
text-align: center;
}
</style>