index-view-layout-top.vue 1.1 KB
Newer Older
1 2
<template>
    <layout class="index-view-layout index-view-layout--top">
3 4
        <header class="index-view-header">
            <div class="index-view-header__left">
5 6
                <slot name="headerLeft" />
            </div>
7
            <div class="index-view-header__center">
8 9
                <slot name="headerCenter" />
            </div>
10
            <div class="index-view-header__right">
11 12 13
                <slot name="headerRight" />
            </div>
        </header>
14
        <slot name="breadcrumb" />
15
        <content class="index-view-content">
16
            <slot name="navPos" />
17 18 19
            <div class="copyright-notice">
                <div class="notice">Copyright 1999-2021 Ernst & Young. All Rights Reserved.</div>
            </div>
20 21 22
        </content>
        <footer class="index-view-footer">
            <slot name="footer"></slot>
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
        </footer>
    </layout>
</template>
<script lang="ts">
import { Vue, Component } from 'vue-property-decorator';

@Component({})
export default class AppIndexViewLayoutTop extends Vue {

}
</script>

<style lang="scss">
@import "./index-view-layout-top.scss";
</style>