Wireframes is a set of components for building wireframes and prototypes with Vue.
npm install wireframes-vue@latest
In your main.js file, import your component library plugin and use it:
import { ComponentLibrary } from 'wireframes-vue';
createApp(App).use(ComponentLibrary).mount('#app');
In your page or component, you can now import and use your component wrappers:
<template>
<wf-title>Demo</wf-title>
<wf-button>Click me!</wf-button>
</template>
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
BSD-3-Clause