
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
Lightweight and efficient library for Vue & Nuxt
Example of a dashboard built with Maz UI components
npm install maz-ui
// main.ts
import { mazUi } from '@maz-ui/themes/presets'
import { fr } from '@maz-ui/translations'
import { MazUi } from 'maz-ui/plugins/maz-ui'
import 'maz-ui/styles'
const app = createApp(App)
app.use(MazUi, {
theme: {
preset: mazUi,
},
translations: {
messages: {
fr,
},
},
})
Then, import and use only the components, composables, and more you need:
<script setup lang="ts">
import MazBtn from 'maz-ui/components/MazBtn'
</script>
<template>
<MazBtn>Click me!</MazBtn>
</template>
Use provided resolvers to enjoy auto-imports and TypeScript support: Resolvers documentation
The Nuxt module automatically:
See options and more in the documentation
// nuxt.config.ts
export default defineNuxtConfig({
modules: ['@maz-ui/nuxt'],
})
No need to import components, plugins, composables or directives, they are all auto-imported.
<script setup lang="ts">
const toast = useToast()
</script>
<template>
<MazBtn @click="toast.success('Hello Maz UI!')">
Click me!
</MazBtn>
</template>
Customize Maz UI to match your brand with our dedicated CLI tool:
# Install the CLI
npm install -g @maz-ui/cli
# Generate your theme
maz generate-css-vars
The CLI will automatically:
To know how configure the CLI, check theming options in our documentation.
Maz UI provides a comprehensive set of beautiful icons (300+) ready-to-use for Vue applications, based on the amazing Heroicons set. All icons are optimized as Vue components with full TypeScript support.
npm install @maz-ui/icons
Import the icons you need from the package:
<script setup>
import { MazArrowTopRightOnSquare, MazCheckCircle, MazXMark } from '@maz-ui/icons'
</script>
<template>
<div>
<CheckCircle class="text-green-500 h-6 w-6" />
<XMark class="text-red-500 h-5 w-5 cursor-pointer" @click="close" />
<ArrowTopRightOnSquare class="text-blue-500 h-4 w-4" />
</div>
</template>
Note: Icons are asynchronous Vue components optimized for tree-shaking. Only imported icons will be included in your final bundle.
We're always looking for contributors! Check out our contribution guide to get started.
FAQs
A standalone components library for Vue.Js 3 & Nuxt.Js 3
The npm package maz-ui receives a total of 23,739 weekly downloads. As such, maz-ui popularity was classified as popular.
We found that maz-ui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago.ย It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.