index.vue 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <template>
  2. <div class="app-container home">
  3. 综合管理后台
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: "Index",
  9. data() {
  10. return {
  11. // 版本号
  12. version: "3.8.8"
  13. };
  14. },
  15. methods: {
  16. goTarget(href) {
  17. window.open(href, "_blank");
  18. }
  19. }
  20. };
  21. </script>
  22. <style scoped lang="scss">
  23. .home {
  24. display: flex;
  25. align-items: center;
  26. justify-content: center;
  27. blockquote {
  28. padding: 10px 20px;
  29. margin: 0 0 20px;
  30. font-size: 17.5px;
  31. border-left: 5px solid #eee;
  32. }
  33. hr {
  34. margin-top: 20px;
  35. margin-bottom: 20px;
  36. border: 0;
  37. border-top: 1px solid #eee;
  38. }
  39. .col-item {
  40. margin-bottom: 20px;
  41. }
  42. ul {
  43. padding: 0;
  44. margin: 0;
  45. }
  46. font-family: "open sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  47. font-size: 13px;
  48. color: #676a6c;
  49. overflow-x: hidden;
  50. ul {
  51. list-style-type: none;
  52. }
  53. h4 {
  54. margin-top: 0px;
  55. }
  56. h2 {
  57. margin-top: 10px;
  58. font-size: 26px;
  59. font-weight: 100;
  60. }
  61. p {
  62. margin-top: 10px;
  63. b {
  64. font-weight: 700;
  65. }
  66. }
  67. .update-log {
  68. ol {
  69. display: block;
  70. list-style-type: decimal;
  71. margin-block-start: 1em;
  72. margin-block-end: 1em;
  73. margin-inline-start: 0;
  74. margin-inline-end: 0;
  75. padding-inline-start: 40px;
  76. }
  77. }
  78. }
  79. </style>