mirror of https://github.com/fatedier/frp.git

committed by
GitHub

No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
12 changed files with 136 additions and 66 deletions
-
38assets/frps/static/index-2a8cf2f5.js
-
2assets/frps/static/index.html
-
3pkg/config/server.go
-
1pkg/config/server_test.go
-
2server/control.go
-
52server/dashboard_api.go
-
9server/proxy/proxy.go
-
2web/frps/components.d.ts
-
15web/frps/src/components/LongSpan.vue
-
4web/frps/src/components/ProxyView.vue
-
72web/frps/src/components/ServerOverview.vue
-
2web/frps/src/utils/proxy.ts
38
assets/frps/static/index-2a8cf2f5.js
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -0,0 +1,15 @@ |
|||
<template> |
|||
<el-tooltip :content="content" placement="top"> |
|||
<span v-show="content.length > length" |
|||
>{{ content.slice(0, length) }}...</span |
|||
> |
|||
</el-tooltip> |
|||
<span v-show="content.length < 30">{{ content }}</span> |
|||
</template> |
|||
|
|||
<script setup lang="ts"> |
|||
defineProps<{ |
|||
content: string |
|||
length: number |
|||
}>() |
|||
</script> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue