You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
981 B
56 lines
981 B
<template>
|
|
<el-container>
|
|
<el-header class="nav-container">
|
|
<navbar
|
|
:nav-index="1"
|
|
@nav-items-click="navClick"/>
|
|
</el-header>
|
|
<el-container>
|
|
<el-main
|
|
id="crm-main-container"
|
|
style="padding:15px;">
|
|
<app-main/>
|
|
</el-main>
|
|
</el-container>
|
|
</el-container>
|
|
</template>
|
|
|
|
<script>
|
|
import { Navbar, Sidebar, AppMain } from './components'
|
|
import { mapGetters } from 'vuex'
|
|
|
|
export default {
|
|
name: 'Layout',
|
|
components: {
|
|
Navbar,
|
|
Sidebar,
|
|
AppMain
|
|
},
|
|
data() {
|
|
return {}
|
|
},
|
|
computed: {
|
|
// ...mapGetters(['navActiveIndex'])
|
|
},
|
|
methods: {
|
|
navClick(index) {}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.aside-container {
|
|
position: relative;
|
|
background-color: #2d3037;
|
|
box-sizing: border-box;
|
|
border-right: solid 1px #e6e6e6;
|
|
}
|
|
|
|
.nav-container {
|
|
padding: 0;
|
|
box-shadow: 0px 1px 2px #dbdbdb;
|
|
z-index: 100;
|
|
min-width: 1200px;
|
|
height: 45px !important;
|
|
}
|
|
</style>
|
|
|