title-floor.vue 724 Bytes
<template>
    <div class="floor-header">
        {{title.name}}

        <a class="more" href="{{title.moreUrl}}">
            {{title.moreName}}
        </a>
    </div>
</template>

<script>
    module.exports = {
        props: ['title']
    };
</script>

<style>
    .floor-header {
        position: relative;
        width: 100%;
        height: 100px;
        font-size: 32px;
        line-height: 100px;
        text-align: center;
        font-weight: bold;
        border-top: 1px solid #eee;
        margin-top: 20px;
        background: #fff;

        .more {
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
        }
    }
</style>