index.vue 1.2 KB

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