We are still updating this page. Some data may be missing here — we will complete it shortly.
Usage
The DashboardGroup component is the main layout that wraps the SidebarLayout components to create a responsive dashboard interface.
Use it in a layout or in your app.vue:
layouts/dashboard.vue
<template>
<B24DashboardGroup>
<B24SidebarLayout>
<slot />
<B24SidebarLayout>
</B24DashboardGroup>
</template>
API
Props
Slots
Theme
app.config.ts
export default defineAppConfig({
b24ui: {
dashboardGroup: {
base: ''
}
}
})
vite.config.ts
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import bitrix24UIPluginVite from '@bitrix24/b24ui-nuxt/vite'
export default defineConfig({
plugins: [
vue(),
bitrix24UIPluginVite({
b24ui: {
dashboardGroup: {
base: ''
}
}
})
]
})