A clean, opinionated, and functional UI library for Vue3.
Install the package via npm:
npm install @returnless/focus-uiImport Focus-UI at the top of your main css file:
@import "@returnless/focus-ui/style.css";Bind the Interia Link component as InertiaLink:
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');
},
// ...
})npm run docs:devSource code is licensed under the MIT license.