bocins
v2.8.4
Published
UI components for Vue 3
Readme
Bocins
Collection of reusable UI components for Vue 3 that can be used standalone or combined together to create flexible and customized interfaces. The term bocins is derived from catalan and means small bits or pieces of something.
Explore all components in Storybook.
Get started
Install the library
npm i bocinsDefault icons are copied from /node_modules/bocins/dist/icons to /public/icons/. Replace them to use your own icons. Existing icons won't be replaced.
To load icons from a custom path (e.g., a CDN), configure the icon path before importing components:
// main.ts
import { config } from 'bocins';
// Configure icon path BEFORE using any components
config.iconPath = 'https://cdn.example.com/icons'; // CDN
config.iconPath = '/my-custom-icons'; // Custom local pathImport styles in your app entry point file or in your styles entry point
// main.ts
import 'bocins/dist/index.css';
// main.scss
@import 'bocins/dist/index.css';You can customize the theme using CSS custom properties and extending some base styles
:root {
font-size: 16px;
font-family: system-ui, Arial, sans-serif;
color-scheme: light dark;
--color-bg: light-dark(#f8f8f8, #333);
--color-text: light-dark(#333, #efefec);
--color-error: #d33;
--color-accent: #39f;
--btn-color: var(--color-accent);
}
body {
background-color: var(--color-bg);
color: var(--color-text);
}
.btn[alert] { --color: var(--color-error); }
.switch {
--color-on: lightgreen;
--color-off: var(--color-error);
}Usage
Import and use components directly in your vue files
<template>
<Selector v-model="user" :options="store.users">
<template #default="{ item: user }">
<Avatar :src="user.avatar" :name="user.name" />
{{ user.name }}
</template>
</Selector>
</template>
<script setup lang="ts">
import { ref } from 'vue';
import { Selector, Avatar } from 'bocins';
import store, { type User } from './store';
const user = ref<User>();
</script>
<style scoped>
.avatar { --size: 1.5rem; }
</style>Claude Code Skill
A Claude Code skill is available in skills/use-bocins-ui/ to help AI assistants follow Bocins best practices when working in projects that use this library. It enforces correct import patterns, component usage, styling conventions, and composition patterns.
