index.vue 434 B

123456789101112131415161718192021222324
  1. <template>
  2. <router-view/>
  3. </template>
  4. <script>
  5. import '@/assets/style/reset.less'
  6. import '@/assets/style/public.less'
  7. import '@/assets/theme/color.less'
  8. export default {
  9. mounted(){
  10. if (this.isMobile) {
  11. window.location.href = window.location.href.replace('index.html','mobile.html')
  12. }
  13. }
  14. }
  15. </script>
  16. <style lang="less">
  17. html,body{
  18. width: 100%;
  19. height: 100%;
  20. color: #fff;
  21. }
  22. </style>