Orion aims at being as simple as possible, but still provides rich features out-of-the-box.
It's written in TypeScript, fully typed, because we care about DX.
Based on Vue 3 and Vite, it's customizable and well documented.
npm i @orion.ui/orion
import { createApp } from 'vue';
import App from './App.vue';
// Import library
import Orion from '@orion.ui/orion';
// Import styles (or .less files if needed)
import '@orion.ui/orion/dist/style.css';
// Import Monkey Patching definition file (if you chose to use our monkeyPatching)
import '@orion.ui/orion/dist/monkey-patching';
createApp(App)
.use(Orion)
.mount('#app');
MIT Copyright (c) 2023-present Orion UI