wit-vue-ui is a vue component library with components intented to use in the witnet ecosystem.
pnpm install wit-vue-ui
# main.ts
import { createApp } from "vue";
import App from "./App.vue";
import WitVueUi from "wit-vue-ui";
createApp(App)
.use(WitVueUi)
.mount("#app");
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.