Skip to content
On this page

Installation guide

Pre-requisites

  • Familiarity with the command line
  • Install Node.js version 15.0 or higher
  1. Install from your favourite package managers.
bash
yarn add jenika-ui
# or with npm
npm install jenika-ui
  1. Import styles into your main.{ts/js} file
js main.ts
import '/node_modules/jenika-ui/dist/style.css';
  1. Start using the pre-styled components

For example if you want buttons, try importing it and directly use it in your app.

js
import JButton from './components/JButton/JButton.vue';

<template>
    <JButton variant="primary">Primary</JButton>
</template>

💡 Quick-Tip

What's next?

Start building great apps using these UI. Good Luck!

Released under the MIT License.