Getting Started
Get started with wovoui
which is based on the world's one of the most famous design framework Bootstrap 5open in new window and Progressive JavaScript Framework Vue 3open in new window. wovoui
is fully responsive, mobile-first design approached as it uses Bootstrap 5open in new window's design styles.
All the components provided by Bootstrap 5open in new window is available in the library, as well as it has some extra component to meet your requirements.
wovoui
can be used in Server Side Rendered (SSR)open in new window applications, in Static Site Generated (SSG)open in new window applications, in Single Page Applications (SPA)open in new window as well as in Electronjsopen in new window based applications.
Using NPM
To install it using Node Package Manage (NPM)open in new window use the following command:
npm install @wovosoft/wovoui
Using Yarn
To install it using YARNopen in new window use the following command:
yarn add @wovosoft/wovoui
How to Use?
For better performance, You should use components like the method below:
import {Button, Accordion} from "@wovosoft/wovoui";
export default {
components: {Button, Accordion}
}
2
3
4
5
But, if you want to register all components, then follow the method given below:
import {createApp} from "vue";
import plugin from "@wovosoft/wovoui/plugin";
const app = createApp({});
app.mount("#app");
app.use(plugin);
2
3
4
5
6