OSDN Git Service

3a8217b8b1c2b7a0097f5ea0322b6ff9aa43c06d
[bytom/Byone.git] / src / popup / framework / components / menu / page / recovery.vue
1 <style scoped>
2 .body{
3   padding: 20px 15px;
4 }
5 </style>
6
7 <template>
8     <div class="mc2warp bg-gray">
9         <section>
10             <i class="iconfont btn-close" @click="close">&#xe605;</i>
11             <h3>导入账户</h3>
12         </section>
13         <section class="body">
14           <div class="form-item">
15               <input type="file">
16           </div>
17           <div class="btn bg-green" @click="recovery">从种子导入</div>
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     recovery: function() {
33       
34     }
35   }
36 };
37 </script>