Appearance
Getting Started
Welcome to EHMDS (Enhanced Design System), built on top of FKUI.
What is EHMDS?
EHMDS is a Vue 3 component library that extends FKUI, Försäkringskassan Design System with additional components and enhanced functionality.
Quick Start
Prerequisites
- Node.js 16+
- Vue 3.2+
Installation
bash
npm install @your-org/ehmds
Basic Usage
vue
<template>
<EhmdsButton variant="primary">
Click me
</EhmdsButton>
</template>
<script setup>
import { EhmdsButton } from '@your-org/ehmds'
</script>