Usage
Use the kbd component to display a Kbd in your content.
K
:kbd{value="meta"} :kbd{value="K"}
API
Props
Theme
app.config.ts
export default defineAppConfig({
b24ui: {
prose: {
kbd: {
base: 'align-text-top'
}
}
}
})
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: {
prose: {
kbd: {
base: 'align-text-top'
}
}
}
})
]
})