@omniconsole/vue
v1.0.5
Published
Vue wrapper for OmniConsole
Maintainers
Readme
@omniconsole/vue
Vue plugin integration wrapper for the OmniConsole in-app developer toolbar.
Official Documentation: console.oxbryte.xyz
Installation
Install both the Vue wrapper and the core library:
npm install @omniconsole/vue omniconsole
# or
yarn add @omniconsole/vue omniconsoleUsage
Register the plugin globally in your main Vue app mount:
import { createApp } from 'vue';
import App from './App.vue';
import { OmniConsolePlugin } from '@omniconsole/vue';
const app = createApp(App);
app.use(OmniConsolePlugin, {
enabled: true,
defaultDock: 'left'
});
app.mount('#app');For detailed options, theme customization, and API parameters, please visit console.oxbryte.xyz.
Keywords
developer-toolbar, vue, vue-console, mobile-debugging, devtools, in-app-console, debugging
