A Vue 3.x Neumorphic design system for Web. Written in TypeScript with Composition API
Qui is a Neumorphic design system for building web applications. It is written in TypeScript with Composition API and is specifically designed for Vue 3.x. The library includes over 30 components, all fully written with the Composition API and utilizes TypeScript for type safety. Qui also includes an icon pack, colors & grid support, and neumorphic styles. It provides a Storybook Sandbox for easy exploration and a documentation site for reference. Qui also offers support for different languages through its localization feature.
To install Qui, you have two options: import the entire library or import specific components as needed.
To fully import Qui, follow these steps:
main.js file, import Qui:import Qui from 'qui';
import { Button, Input } from 'qui';
import 'qui/dist/styles.css';
Qui.localization.messages = {
en: {
button: 'Click me',
input: 'Type something',
},
fr: {
button: 'Cliquez ici',
input: 'Entrez quelque chose',
},
};
Qui.setup({
zIndex: 100,
// other options
});
To learn how to use each component, refer to the component’s stories in the Storybook Sandbox.
To use Qui with Nuxt 3, follow these steps:
Create a file in your plugins folder, e.g., qui.js.
Add the following configuration to your nuxt.config.ts file:
export default {
plugins: [
{ src: '~/plugins/qui.js', mode: 'client' },
],
}
Qui is a powerful Neumorphic design system specifically designed for Vue 3. Its extensive library of components, written with the Composition API and TypeScript, makes it easy to build great products for customers. With features like icons pack, neumorphic styles, and localization support, Qui is a comprehensive solution for designing and developing web applications. Its intuitive documentation and the Storybook Sandbox further facilitate the use and exploration of its components. Whether you are a beginner or an experienced developer, Qui provides the tools needed to create modern and visually appealing user interfaces.