Authored by 郭成尧

delete-header

1 -<template>  
2 - <header class="yoho-header">  
3 - <a :href="headerBack" class="iconfont nav-back">&#xe610;</a>  
4 - <span v-if="showBtn" class="iconfont nav-home">&#xe638;</span>  
5 - <p class="nav-title">{{headerText}}</p>  
6 - </header>  
7 -</template>  
8 -<style>  
9 -  
10 -</style>  
11 -<script>  
12 -  
13 - module.exports = {  
14 - props: {  
15 - headerBack: String,  
16 - headerText: String,  
17 - showBtn: Boolean  
18 - },  
19 - data(){  
20 - return {};  
21 - }  
22 - };  
23 -  
24 -</script>