123456789101112131415161718192021222324252627 |
- <template>
- <div id="app">
- <router-view />
- </div>
- </template>
- <script>
- export default {
- name: "App",
- data() {
- return {
- // isDesktop: false
- };
- },
- mounted() {
- // this.$store.dispatch("getCommonBaseHomeList");
- // if (!this.$store.state.isDesktop) {
- // this.$request.getWeAppLink().then(res => {
- // res.msg && (window.location.href = res.msg);
- // });
- // }
- },
- };
- </script>
- <style>
- </style>
|