mirror of
https://github.com/zclzone/vue-naive-admin.git
synced 2026-03-10 21:50:22 +08:00
first commit
This commit is contained in:
21
src/layout/components/header/index.vue
Normal file
21
src/layout/components/header/index.vue
Normal file
@@ -0,0 +1,21 @@
|
||||
<script setup>
|
||||
import BreadCrumb from './BreadCrumb.vue'
|
||||
import HeaderAction from './HeaderAction.vue'
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<header class="header">
|
||||
<bread-crumb />
|
||||
<header-action />
|
||||
</header>
|
||||
</template>
|
||||
|
||||
<style lang="scss" scoped>
|
||||
.header {
|
||||
padding: 0 35px;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user