多维表格
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.
 
 
 
 
 
 

15 lines
237 B

<template>
<div class="panels">
<div class="panel">DUMMY</div>
</div>
</template>
<style lang="scss" scoped>
.panels {
@apply w-3/4 flex flex-col;
.panel {
@apply border-1 border-gray-200 p-6 rounded-lg;
}
}
</style>