Skip to content

Commit

Permalink
adds copy to clipboard library
Browse files Browse the repository at this point in the history
  • Loading branch information
fleetcoder committed Jun 16, 2020
1 parent f7e6e83 commit 74c73f6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
"v-file-upload": "^3.1.7",
"vue": "^2.5.2",
"vue-audio-recorder": "^3.0.1",
"vue-clipboard2": "^0.3.1",
"vue-loader": "^15.9.1",
"vue-plyr": "^6.0.4",
"vue-prism-editor": "^0.3.0",
Expand Down
3 changes: 3 additions & 0 deletions src/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import VueRouter from 'vue-router'
import 'mint-ui/lib/style.css'
import AudioRecorder from 'vue-audio-recorder'
import VuePlyr from 'vue-plyr'
import VueClipboard from 'vue-clipboard2'
Vue.use(VuePlyr, {
plyr: {
fullscreen: { enabled: false }
Expand All @@ -21,6 +22,7 @@ Vue.use(MintUI)
Vue.use(FileUpload)
Vue.use(AudioRecorder)
Vue.use(VueRouter)
Vue.use(VueClipboard)
Vue.component(MUI.Radio.name, MUI.Radio)
Vue.config.productionTip = false
import VueResource from 'vue-resource'
Expand All @@ -34,3 +36,4 @@ window.MintUI = MintUI
window.VueRouter = VueRouter
window.FileUpload = FileUpload
window.AudioRecorder = AudioRecorder
window.VueClipboard = VueClipboard

0 comments on commit 74c73f6

Please sign in to comment.