1.0.13 • Published 6 years ago

vue-pixel v1.0.13

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

Vue Pixel

Version Build Downloads Coverage Status License

Vue Pixel is a simple Pixel-Art styled component library.

Documentation

You can find the documentation here: Documentation

Installation and Usage

npm install vue-pixel --save

Use it as a full plugin:

import Vue from 'vue';
import VuePixel from 'vue-pixel';

Vue.use(VuePixel);

Or use individual components:

import Vue from 'vue';
import { PixelButton, PixelToolbar } from 'vue-pixel/src/components';

components {
  PixelButton,
  PixelToolbar
}

Don't forget to add fonts:

<style>
  @import url("vue-pixel/dist/fonts/PixelArial.css");
  @import url("vue-pixel/dist/fonts/PixelIcons.css");
</style>

Alternativelly you can reference the script and the stylesheet in your HTML, old-school way:

<script src="vue-pixel/dist/vue-pixel.min.js"></script>
<link rel="stylesheet" href="vue-pixel/dist/fonts/PixelArial.css">
<link rel="stylesheet" href="vue-pixel/dist/fonts/PixelIcons.css">
<!-- CDN -->
<script src="https://unpkg.com/vue-pixel/dist/vue-pixel.min.js"></script>
<link rel="stylesheet" href="https://unpkg.com/vue-pixel/dist/fonts/PixelArial.css">
<link rel="stylesheet" href="https://unpkg.com/vue-pixel/dist/fonts/PixelIcons.css">

License

MIT

1.0.13

6 years ago

1.0.12

6 years ago

1.0.11

6 years ago

1.0.10

6 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago