Atlas UI is a Vue 3 component library built with PrimeVue 4 and Tailwind CSS 4. It provides reusable building blocks so teams can ship dashboards quickly in any Vue 3 application.
For backend helpers like server-driven datatable options, see the companion Atlas Laravel package.
-
Install the package:
npm install @tmarois/atlas-ui -
Import the CSS in your app entry (e.g.,
main.tsormain.js):// main.ts import { createApp } from 'vue' import App from './App.vue' import '@tmarois/atlas-ui/style.css' createApp(App).mount('#app')
Atlas Laravel is a backend toolkit for Inertia.js applications built with Laravel. It removes the repetitive setup that comes with new projects so you can ship faster.
Laravel Template – example usage and boilerplate scaffolding is set up in this template.
See AGENTS.md for repository conventions, testing instructions, and pull request guidelines.
- Install dependencies with
npm install
- Run tests with
npm test
A local Vite + Vue 3 sandbox lives in playground/ for manually testing Atlas UI components during development. It's not part of the production packages. See playground/README.md for setup and usage.