Vite
Install and configure SIGMA-UI in a Vite project.
Installation steps
Initialize SIGMA-UI
In your existing Vite-Vue project, run the following command to config SIGMA-UI (learn more here: CLI docs > init):
bash
npx sigma-ui init
And follow the steps in your terminal.
Check styles import
Make sure you are importing the global styles file that was created / modified by the init
command:
diff
import { createApp } from 'vue'
import App from './App.vue'
import './assets/index.css'
createApp(App).mount('#app')
That's it
You can now start adding components to your project (learn more here: CLI docs > add):
bash
npx sigma-ui add button
The command above will add the Button
component to your project. You can then import and use it like this:
vue
<script setup lang="ts">
import { Button } from '@/components/ui/button'
</script>
<template>
<Button>Click me</Button>
</template>