區塊 - daniel-qa/Vue GitHub Wiki

區塊

  • 用途: 基本的頁面區塊
<template>
 <!-- 端外通知-->    
 <el-card style="width: 80%; margin: 20px auto;">

     <template #header>
         <div class="custom-title">
             <h2>預覽發送內容</h2>
         </div>
     </template>

 </el-card>

</template>

 <el-card style="width: 80%; margin: 20px auto;">

     <template #header>
         <div class="custom-title">
             <h2>編發送內容</h2>
         </div>
     </template>
 </el-card>

</template>

說明

margin: 20px auto; 等价于:

margin-top: 20px;
margin-right: auto;
margin-bottom: 20px;
margin-left: auto;
⚠️ **GitHub.com Fallback** ⚠️