additional-sections.vue 761 B

123456789101112131415161718
  1. <template>
  2. <el-page-header :icon="null">
  3. <template #content>
  4. <div class="flex items-center">
  5. <el-avatar :size="32" class="mr-3" src="https://cube.elemecdn.com/0/88/03b0d39583f48206768a7534e55bcpng.png" />
  6. <span class="text-large font-600 mr-3"> Title </span>
  7. <span class="text-sm mr-2" style="color: var(--el-text-color-regular)"> Sub title </span>
  8. <el-tag>Default</el-tag>
  9. </div>
  10. </template>
  11. <template #extra>
  12. <div class="flex items-center">
  13. <el-button>Print</el-button>
  14. <el-button type="primary" class="ml-2">Edit</el-button>
  15. </div>
  16. </template>
  17. </el-page-header>
  18. </template>