Skip to content

Getting Started

Prerequisites

Installation

maz-ui
bash
npm install maz-ui
# or pnpm add maz-ui
# or yarn add maz-ui

Vue JS vue

In the main.js or main.ts, import main maz-ui CSS file before your own CSS

ts
import 'maz-ui/styles' // or import 'maz-ui/css/main.css'
import '@/css/path_to_your_main_file.css'

Nuxt JS nuxt

A Nuxt Module is available to install the library. Take advantage of the automatic import of CSS files, components, composables and plugins.

Follow the Nuxt Module Documentation and see options

ts
export default defineNuxtConfig({
  modules: ['maz-ui/nuxt'],
})

Recommendations

TIP

unplugin-vue-components

Use unplugin-vue-components and the dedicated maz-ui resolver to auto-import components and directives

ts
// vite.config.mts

import Components from 'unplugin-vue-components/vite'
import { UnpluginVueComponentsResolver, UnpluginDirectivesResolver } from 'maz-ui/resolvers'

export default defineConfig({
  plugins: [
    Components({
      dts: true,
      resolvers: [
        UnpluginVueComponentsResolver(),
        UnpluginDirectivesResolver(),
      ],
    }),
  ]
})

Typescript users: Add this in your tsconfig.json

json
{
  ...
  "include": [
    "components.d.ts",
  ],
  ...
}

Then, you don't need to import all maz-ui components into your components

Component import

Import the module chosen directly in your component

html
<template>
  <MazBtn>Button</MazBtn>
</template>

<script lang="ts" setup>
  import MazBtn from 'maz-ui/components/MazBtn'
</script>

Install components globally

typescript
import { createApp } from 'vue'
import MazBtn from 'maz-ui/components/MazBtn'

const app = createApp(App)
app.component('MazBtn', MazBtn)
...

Before, you have to install all dependencies of components

typescript
import { createApp } from 'vue'
import * as components from 'maz-ui/components'
import 'maz-ui/styles' // or import 'maz-ui/css/main.css'

const app = createApp(App)

Object.entries(components).forEach(([componentName, component]) => {
  app.component(componentName, component)
})