๐ด @bridge/ui
This module provides programmatic access to Vue components defined inside of the extension's ui/
folder. View Source Code
js
import { ... } from '@bridge/ui'
๐ผ Variables
BuiltIn
TODO
- Type:
BuiltIn
js
//TODO
/*
BuiltIn includes
BaseWindow
SidebarWindow
DirectoryViewer
BridgeSheet
*/
UI
This variable is of any
type variable which references the name of your Vue filename located in ui/
folder.
- Type:
any
js
//Accesses the component inside of the ui/Main.vue file
import { Main } from '@bridge/ui'
//Accesses the component inside of the ui/Nested/Main.vue file
import { Nested: { Main: Main2 } } from '@bridge/ui'