OSDN Git Service

change readme
[bytom/Byone.git] / src / popup / home / components / menu-help.vue
1 <style scoped>
2 .content {
3   margin: 50px 0;
4   word-wrap: break-word;
5   font-size: 14px;
6 }
7 </style>
8
9 <template>
10     <div class="mc2warp bg-gray">
11         <section>
12             <i class="iconfont btn-close" @click="close">&#xe605;</i>
13             <h3>帮助</h3>
14         </section>
15         <section class="content">
16           <p>帮助与信息页</p>
17           <a href="http://github.com/bytom/bytom/wiki" target="_blank">http://github.com/bytom/bytom/wiki</a>
18         </section>
19     </div>
20 </template>
21
22 <script>
23 export default {
24   name: "",
25   data() {
26     return {};
27   },
28   methods: {
29     close: function() {
30       this.$emit("closed", "");
31     }
32   }
33 };
34 </script>