Returnless UI

Returnless Focus-UI

A clean, opinionated, and functional UI library for Vue3.

Installation

Install the package via npm:

bash
npm install @returnless/focus-ui

Import Focus-UI at the top of your main css file:

css
@import "@returnless/focus-ui/style.css";

Bind the Interia Link component as InertiaLink:

js
import { Link } from '@inertiajs/vue3';

createInertiaApp({
  // ...
  setup({ el, App, props, plugin }) {
    const app = createApp(App);
    app.use('InertiaLink', Link); // This is important to get Inertia links working in your project.
    app.mount('#app');
  },
  // ...
})

Run the docs

bash
npm run docs:dev

License

Source code is licensed under the MIT license.