0.0.3 • Published 3 years ago

axeri-flux-ui v0.0.3

Weekly downloads
-
License
-
Repository
-
Last release
3 years ago

Flux UI

Build Window 11 styled user interfaces with VueJS

Installation

First install the package into your project

npm install axeri-flux-ui

Next create a new plugin instance and install into a VueJS app

// Your VueJS entry script
import { createApp } from "vue";
import App from "./App.vue";
import FluxUi from "axeri-flux-ui/src/vue/Main";

const app = createApp(App);
    
app.use(FluxUi.create());
app.mount("#app");

And that's it, FluxUI is now installed into your VueJS project!