Vue 3 components for building web applications (WIP)
Ornament UI is a UI component library specifically designed for Vue 3. However, it is important to note that this project is still in active development and does not have a v1 release yet. As a result, users can expect some bugs and issues. Ornament UI provides a range of components to enhance the user interface of Vue 3 applications.
To install Ornament UI in your project, you can follow one of the provided methods based on your preference.
NPM is the recommended package manager for integrating Ornament UI into your Vue 3 project. Use the following command to install Ornament UI via NPM:
npm install ornament-ui
Users who prefer using Yarn can install Ornament UI by running the following command:
yarn add ornament-ui
To use Ornament UI as a plugin and enable its functionality globally across all Vue files, follow these steps:
main.js file:import OrnamentUI from 'ornament-ui';
Vue.use(OrnamentUI);
Similar to the plugin approach, you can also register Ornament UI components globally, providing flexibility on individual component usage. Follow these steps:
main.js file:import { Button, Input } from 'ornament-ui';
Vue.component('OrnamentButton', Button);
Vue.component('OrnamentInput', Input);
For more granular control, you can also register Ornament UI components at a component-level. This approach allows you to selectively use Ornament UI components only where needed. Simply import the desired component(s) in the corresponding component file and utilize them within the template.
Ornament UI is a promising UI component library designed specifically for Vue 3. While it is still in active development, it offers a comprehensive set of UI components to enhance the user interface of Vue 3 applications. With easy installation options, including NPM and Yarn, and flexible registration methods at a global or component level, Ornament UI provides developers with the tools they need to create engaging and visually appealing Vue 3 applications.