We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
UseMediaRecorder
1 parent 2b40051 commit 8a94eacCopy full SHA for 8a94eac
src/plugin/index.ts
@@ -1,13 +1,14 @@
1
import type { App } from 'vue'
2
-import type { MediaRecorderPluginOptions } from '../types'
+import type { MediaRecorderPluginOptions } from '@orbisk/vue-use-media-recorder'
3
+import { UseMediaRecorder } from '@orbisk/vue-use-media-recorder'
4
5
export const MediaRecorderPlugin = {
- install(_app: App, _options?: MediaRecorderPluginOptions) {
6
+ install(app: App, _options?: MediaRecorderPluginOptions) {
7
// app.provide(EXAMPLE, options?.example)
8
9
// Add auto imports
10
- // app.component('Toggle', ToggleComponent)
11
+ app.component('UseMediaRecorder', UseMediaRecorder)
12
},
13
}
14
0 commit comments