• This project
    • Loading...
  • Sign in

fe / yohobuywap-node · Files

Go to a project

GitLab

  • Go to group
  • Project
  • Activity
  • Files
  • Commits
  • Pipelines 0
  • Builds 0
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Members
  • Labels
  • Wiki
  • Forks
  • Network
  • Create a new issue
  • yohobuywap-node
  • public
  • vue
  • common
  • header.vue
  • province-frame
    d854f4ff
    by 郭成尧
    2017-01-24 15:36:43 +0800  
    Browse Directory »
header.vue 497 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
<template>
    <header class="yoho-header">
        <a :href="headerBack" class="iconfont nav-back">&#xe610;</a>
        <span v-if="showBtn" class="iconfont nav-home">&#xe638;</span>
        <p class="nav-title">{{headerText}}</p>
    </header>
</template>
<style>

</style>
<script>

    module.exports = {
        props: {
            headerBack: String,
            headerText: String,
            showBtn: Boolean
        },
        data(){
            return {};
        }
    };

</script>