App.vue 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <template>
  2. <div id="app">
  3. <header class="grid-content header-color">
  4. <el-row>
  5. <a class="brand" href="#">frp</a>
  6. </el-row>
  7. </header>
  8. <section>
  9. <el-row>
  10. <el-col id="side-nav" :xs="24" :md="4">
  11. <el-menu default-active="1" mode="vertical" theme="light" router="false" @select="handleSelect">
  12. <el-menu-item index="/">Overview</el-menu-item>
  13. <el-submenu index="/proxies">
  14. <template slot="title">Proxies</template>
  15. <el-menu-item index="/proxies/tcp">TCP</el-menu-item>
  16. <el-menu-item index="/proxies/udp">UDP</el-menu-item>
  17. <el-menu-item index="/proxies/http">HTTP</el-menu-item>
  18. <el-menu-item index="/proxies/https">HTTPS</el-menu-item>
  19. <el-menu-item index="/proxies/stcp">STCP</el-menu-item>
  20. <el-menu-item index="/proxies/sudp">SUDP</el-menu-item>
  21. </el-submenu>
  22. <el-menu-item index="">Help</el-menu-item>
  23. </el-menu>
  24. </el-col>
  25. <el-col :xs="24" :md="20">
  26. <div id="content">
  27. <router-view></router-view>
  28. </div>
  29. </el-col>
  30. </el-row>
  31. </section>
  32. <footer></footer>
  33. </div>
  34. </template>
  35. <script>
  36. export default {
  37. methods: {
  38. handleSelect(key, path) {
  39. if (key == '') {
  40. window.open("https://github.com/fatedier/frp")
  41. }
  42. }
  43. }
  44. }
  45. </script>
  46. <style>
  47. body {
  48. background-color: #fafafa;
  49. margin: 0px;
  50. font-family: -apple-system,BlinkMacSystemFont,Helvetica Neue,sans-serif;
  51. }
  52. header {
  53. width: 100%;
  54. height: 60px;
  55. }
  56. .header-color {
  57. background: #58B7FF;
  58. }
  59. #content {
  60. margin-top: 20px;
  61. padding-right: 40px;
  62. }
  63. .brand {
  64. color: #fff;
  65. background-color: transparent;
  66. margin-left: 20px;
  67. float: left;
  68. line-height: 25px;
  69. font-size: 25px;
  70. padding: 15px 15px;
  71. height: 30px;
  72. text-decoration: none;
  73. }
  74. </style>