whycwx
2022-05-21 93fef7442fbfff2f0e8f1cd352eae5d79c41c93e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<template>
    <div id="app">
        <router-view></router-view>
    </div>
</template>
<script>
export default {
    data() {
        return {
 
        }
    },
    mounted() {
        // this.$router.push({
        //     path: '/',
        // }).catch(err => {
        //     console.log(err)
        // });
    }
}
</script>
<style>
@import "./assets/css/reset.css";
</style>