App.san 1.4 KB
Newer Older
B
BingBlog 已提交
1 2 3
<template>
    <div id="app">
        <san-appbar title="VisualDL">
B
BingBlog 已提交
4
                <div class="visual-dl-user-info visual-dl-app-follow-list" slot="right"></div>
B
BingBlog 已提交
5
        </san-appbar>
B
BingBlog 已提交
6 7 8
        <div id="content-container" class="visual-dl-content-container">
            <div id="app-content" class="visual-dl-app-content">
                <div id="visual-dl-content"></div>
B
BingBlog 已提交
9 10
            </div>
        </div>
B
BingBlog 已提交
11 12 13
        <div class="visual-dl-footer">
            <div class="visual-dl-ftext"><a href="https://github.com/VisualDL/VisualDL" target="_blank" class="visual-dl-bluetext">GitHub</a></div>
            <div class="visual-dl-ftext visual-dl-ftext3">VisualDL © MIT</div>
B
BingBlog 已提交
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
        </div>
    </div>
</template>

<script>
import Appbar from 'san-mui/AppBar';

export default {
    components: {
        'san-appbar': Appbar
    },
    initData() {
        return {};
    }
};

</script>

<style lang="stylus">
B
BingBlog 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56

@import './style/variables';

+prefix-classes(prefix)
    .footer
        float: left;
        position:relative;
        width: 100%
        background: #fff
        padding-top: 0
        margin-top: -2px
        background #fff
        border solid 1px #e4e4e4
        .ftext
            width: 30%
            float: left
            text-align: center
            padding: 30px 0
            font-size: 14px
        .ftext3
            margin-left: 5%
        .bluetext
            text-decoration: none
            color: #398bfb
B
BingBlog 已提交
57
</style>