@feugene/fint-ds
v0.1.0
Published
Vue 3 design system package with components, styles, directives, and localization helpers.
Maintainers
Readme
Fint-DS (Vue 3)
@feugene/fint-ds is a Vue 3 design-system package. Consumers install the published package and use the build artifacts from dist.
Русская версия: docs/ru/installation.md
Documentation
docs/en/installation.md— installation, UnoCSS setup, plugin registrationdocs/en/styling.md— styles, themes, CSS variables, customizationdocs/en/localization.md— built-in i18n,vue-i18n,@feugene/fint-i18ndocs/en/directives.md— package directives
Russian documentation:
Quick start
- Install the package:
yarn add @feugene/fint-ds- Import the package styles once in
main.ts:
import '@feugene/fint-ds/styles.css'If your app already uses UnoCSS, keep that setup on the app side and continue importing its reset / virtual:uno.css as usual.
- Apply the theme before mounting the app:
import { initThemeEarly } from '@feugene/fint-ds'
initThemeEarly()- Register the plugin:
import { createApp } from 'vue'
import FintDs from '@feugene/fint-ds'
createApp(App)
.use(FintDs)
.mount('#app')For the full setup, see docs/en/installation.md.
