Showing
1 changed file
with
0 additions
and
24 deletions
public/vue/common/header.vue
deleted
100644 → 0
1 | -<template> | ||
2 | - <header class="yoho-header"> | ||
3 | - <a :href="headerBack" class="iconfont nav-back"></a> | ||
4 | - <span v-if="showBtn" class="iconfont nav-home"></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> |
-
Please register or login to post a comment