DocNavBar.vue 957 Bytes
<template>
    <div class="px-3 py-3 flex items-center doc-nav-bar">
        <div class="shrink-0 left">
            <slot name="left">
                <span class="back-btn" @click="goBack">
                    <doc-icon type="doc-left-1" style="color: #262626"/>
                </span>
            </slot>
        </div>
        <div class="grow text-center title">
            <slot>
                {{title}}
            </slot>
        </div>
        <div class="shrink-0 right">
            <slot name="right"></slot>
        </div>
    </div>
</template>

<script>
export default {
    name: 'DocNavBar',
    props: {
        title: String
    },
    methods: {
        goBack() {
            this.$router.back()
        }
    }
}
</script>

<style lang="less" scoped>
.doc-nav-bar {
    background: transparent;
    border-bottom: 1px solid #c0ccdf;
    .left {
        min-width: 24px;
    }
    .title {
        font-size: 16px;
    }
}
</style>