Skip to content
On this page

Panel 内容面板

基础用法

内容区域

图例
带标题的面板
展开查看
vue
<template>
<div class="example">
  <div class="biz-panel">
    <div>内容区域</div>
  </div>
  
  <div class="biz-panel">
    <div class="title">图例</div>
    <div>带标题的面板</div>
  </div>
</div>
</template>
<script setup>

</script>

<style>
.biz-panel{
  width: 229px;
  height: 246px;
}
</style>