⚠️ Blessed Components is still under development and not ready for use. ⚠️
About
Blessed Components is a Vue 3 library with handcrafted components inspired by oldschool Unix terminal apps. Everything you need to maintain consistant theme with Entropy.
Getting Started
Install
npm install @chthsoft/blessed-components
Load plugin into Vue
import { createApp } from 'vue'
import App from './App.vue'
import { createBlessedComponents } from '@chthsoft/blessed-components'
import '@chthsoft/blessed-components/style.css'
createApp(App)
.use(createBlessedComponents())
.mount('#app')
Usage
See documentation for a full list of components and their usage.
<b-main>
<!-- nested within your app -->
{{ echo }}
<b-text-field
v-model="message"
label="Message"
/>
<b-btn accent light-text @click="echo = message">
</b-main>
Documentation
Coming soon ™