Vue 3 · TypeScript · Design System
A component library for enterprise admin UIs
Simple, consistent, and efficient. A complete design system and high-quality components to help you ship trustworthy product interfaces faster.
From design tokens to components — a practical product delivery path
Reusable tokens for color, type, radius, shadow, motion, and elevation
Paired semantic colors and CSS variables — switch themes without rewriting styles
Complete type definitions and editor hints that lower integration cost
Override brand colors and sizes with CSS variables to match your product
Unified APIs and full type hints reduce learning and collaboration cost.
View docs<template>
<bp-button status="primary" @click="open = true">
Open dialog
</bp-button>
<bp-modal v-model="open" title="Confirm action">
<p>Content area</p>
</bp-modal>
</template>
<script setup lang="ts">
import { ref } from 'vue'
const open = ref(false)
</script>Jump into the docs that match your role — clear goals, clear paths