0.1.1 • Published 2 years ago

@sorion/windmill-vue v0.1.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Windmill Vue UI

The component library for fast and accessible development of gorgeous interfaces.

This is still a work in progress!

Install

npm i @sorion/windmill-vue

You can register all components globally in your vue app.

// main.js

import { createApp } from 'vue';
import App from './App.vue';

import ui from '@sorion/windmill-vue';

createApp(App).use(ui).mount('#app');

Use components inside your project

<template>
  <UIButton>Hi there!</UIButton>
</template>

All component are prefixed with UI, meaning the button component will be named UIButton, the label UILabel and so on...

Local command

Building locally

To manually build the lib for both ES6 module and UMD module

npm run build

Running documentation locally

  1. Start the development server
npm run docs:dev
  1. Visit Visit the development environment running at http://localhost:3000.

Building documentation locally

npm run docs:build