Skip to content
This repository was archived by the owner on Jan 9, 2022. It is now read-only.

Commit 3eec6dd

Browse files
Michael.KryvoruchkoMichael.Kryvoruchko
Michael.Kryvoruchko
authored and
Michael.Kryvoruchko
committed
chore: add comments to plugin entities
1 parent f9c2d48 commit 3eec6dd

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

packages/dialog/src/plugin.ts

+24
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,32 @@ const $dialog: IDialog = {
3131
},
3232
}
3333

34+
/**
35+
* Injection key
36+
*
37+
* Provides access to plugin methods and properties using the vue inject method
38+
*
39+
* https://gitart-vue-dialog.netlify.app/docs/guide/plugin-usage.html#usage
40+
*
41+
* @example Usage
42+
* const {
43+
* dialogs,
44+
* removeDialog,
45+
* } = inject(dialogInjectionKey)!
46+
*/
3447
export const dialogInjectionKey: DialogInjectionKey = Symbol('GDialog')
3548

49+
/**
50+
* Plugin to install
51+
*
52+
* https://gitart-vue-dialog.netlify.app/docs/guide/plugin-usage.html - Documentaion
53+
*
54+
* @example instalation
55+
* import { plugin as dialogPlugin } from 'gitart-vue-dialog'
56+
* createApp(App)
57+
* .use(dialogPlugin)
58+
* .mount('#app')
59+
*/
3660
export const plugin: Plugin = {
3761
install: (app) => {
3862
app.provide(dialogInjectionKey, $dialog)

0 commit comments

Comments
 (0)