Thanks to visit codestin.com
Credit goes to Github.com

Skip to content

tmarois/atlas-ui

Repository files navigation

Atlas UI

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.

Installation

  • Install the package: npm install @tmarois/atlas-ui

  • Import the CSS in your app entry (e.g., main.ts or main.js):

    // main.ts
    import { createApp } from 'vue'
    import App from './App.vue'
    import '@tmarois/atlas-ui/style.css'
    
    createApp(App).mount('#app')

Documentation

Atlas Laravel

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

Laravel Template – example usage and boilerplate scaffolding is set up in this template.

Contributing

See AGENTS.md for repository conventions, testing instructions, and pull request guidelines.

Installing

  • Install dependencies with npm install

Testing

  • Run tests with npm test

Playground

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.