Installation guide
Pre-requisites
- Familiarity with the command line
- Install Node.js version 15.0 or higher
- Install from your favourite package managers.
bash
yarn add jenika-ui
# or with npm
npm install jenika-ui
- Import styles into your
main.{ts/js}
file
js main.ts
import '/node_modules/jenika-ui/dist/style.css';
- 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
- You can ignore importing if you have installed Unplugin Vue Components
What's next?
Start building great apps using these UI. Good Luck!