Skip to content

Commit

Permalink
fix(ui): Fix copy text from term.
Browse files Browse the repository at this point in the history
Signed-off-by: Jianhui Zhao <[email protected]>
  • Loading branch information
zhaojh329 committed Jan 15, 2025
1 parent 8847ff6 commit 5b24011
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ui/src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
*/

import { createApp } from 'vue'
import VueClipboard from 'vue-clipboard2'
import VueAxios from 'vue-axios'
import axios from 'axios'
import App from './App.vue'
Expand All @@ -13,6 +14,7 @@ import ElementPlus from './element-plus'

const app = createApp(App)

app.use(VueClipboard)
app.use(VueAxios, axios)
app.use(router)
app.use(i18n)
Expand Down

0 comments on commit 5b24011

Please sign in to comment.