jazz
2023-12-28 583e1038163d7b95f7927f83b19d81f6eac32020
提交 | 用户 | age
3ac5f2 1 <!--index.vue-->
J 2 <template>
3     <div>
4
5     </div>
6 </template>
7
8 <script>
9 // import Login from '../utils/jun_login.js'
10
11 export default {
12   name: 'Index',
13   components: {},
14   inject: ['noop'],
15   data() {
16     return {
17
18     }
19   },
20   computed: {
21
22   },
23   mounted() {
24     console.log('index mounted')
25     this.init()
26   },
27   destroyed() {
28
29   },
30   methods: {
31     init() {
32
33     }
34   }
35 }
36 </script>
37
38 <style scoped>
39 </style>