| 1234567891011121314151617181920212223242526272829303132333435 |
- <script setup></script>
- <template>
- <header class="layout-header">
- <div></div>
- <div class="flex items-center">
- <el-avatar class="mr-10px"></el-avatar>
- <el-dropdown>
- <span class="el-dropdown-link">
- Dropdown List
- <el-icon class="el-icon--right">
- <i-ep-arrow-down />
- </el-icon>
- </span>
- <template #dropdown>
- <el-dropdown-menu>
- <el-dropdown-item>Action 1</el-dropdown-item>
- <el-dropdown-item>Action 2</el-dropdown-item>
- <el-dropdown-item>Action 3</el-dropdown-item>
- </el-dropdown-menu>
- </template>
- </el-dropdown>
- </div>
- </header>
- </template>
- <style scoped>
- .layout-header {
- background-color: #fff;
- height: 100%;
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- </style>
|