App.vue 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. <template>
  2. <div id="app">
  3. <transition name="fade">
  4. <keep-alive>
  5. <router-view v-if="$route.meta.keepAlive" />
  6. </keep-alive>
  7. </transition>
  8. <transition name="fade">
  9. <router-view v-if="!$route.meta.keepAlive" />
  10. </transition>
  11. </div>
  12. </template>
  13. <script>
  14. export default {
  15. created() {
  16. this.chooseCss();
  17. },
  18. methods: {
  19. chooseCss() {
  20. var u = navigator.userAgent;
  21. let pad = u.indexOf("iPad") > -1 ? true : false;
  22. let url = pad === true ? "/pad.css" : "/pc.css";
  23. import(`./style${url}`);
  24. },
  25. },
  26. };
  27. </script>
  28. <style>
  29. #app {
  30. font-family: Avenir, Helvetica, Arial, sans-serif;
  31. -webkit-font-smoothing: antialiased;
  32. -moz-osx-font-smoothing: grayscale;
  33. /* text-align: center; */
  34. color: #2c3e50;
  35. min-height: 100vh;
  36. }
  37. #nav {
  38. padding: 30px;
  39. }
  40. #nav a {
  41. font-weight: bold;
  42. color: #2c3e50;
  43. }
  44. #nav a.router-link-exact-active {
  45. color: #42b983;
  46. }
  47. .headerRow{
  48. display: flex;
  49. flex-direction: row;
  50. align-items: center;
  51. }
  52. .headerRowEnd{
  53. justify-content: flex-end;
  54. }
  55. .headerRowLeftRight{
  56. justify-content: space-between;
  57. }
  58. .mrl{
  59. margin-left: 10px;
  60. }
  61. .mrr{
  62. margin-right: 10px;
  63. }
  64. .pointers{
  65. cursor: pointer;
  66. }
  67. </style>