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