0.2.6 • Published 4 years ago

@open-hotel/pixel v0.2.6

Weekly downloads
9
License
-
Repository
-
Last release
4 years ago

Pixel UI

Pixel UI is a Vue.js based lib that implements Habbo UI components. It is being designed for Open Hotel.

Check out the demo.

It is still an on-going project, so contributions are more than welcomed!

Install

yarn add @open-hotel/pixel
# or
npm install @open-hotel/pixel

Usage

You can install all the UI components

import { PixelUI } from '@open-hotel/pixel'
import Vue from 'vue'

Vue.use(PixelUI)

Or use them separetely

// MyComponent.vue
import { Button as PxBtn } from '@open-hotel/pixel'

export default {
  components: {
    PxBtn
  }
}