0.1.18 • Published 5 years ago

pz-pui-alpha v0.1.18

Weekly downloads
11
License
MIT
Repository
github
Last release
5 years ago

pz-pui-alpha

A component library for Pickzen

Installation

Directly in the browser

Drop the library in with a <script> tag alongside Vue:

<div id="app">
<!-- ... use components here ... -->
</div>

<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/pz-pui-alpha"></script>
<script>
new Vue({ el: '#app' })
</script>

Or, if you only want to use a small subset of components, drop them in individually:

<div id="app">
<!-- ... use component here ... -->
</div>

<script src="https://unpkg.com/vue"></script>
<script src="https://unpkg.com/pz-pui-alpha/HelloA"></script>
<script>
new Vue({ el: '#app' })
</script>

In a module system

Install the library with NPM:

npm install pz-pui-alpha

Then either import the library and either globally register all components with:

import PzPuiAlpha from 'pz-pui-alpha'

Vue.use(PzPuiAlpha)

or import and locally register a single component with:

import { HelloA } from 'pz-pui-alpha'

export default {
components: { PzPuiAlpha }
}

Individually packaged components

If you only want to use a small subset of components, import only individually packaged components to reduce the size of your application:

import HelloA from 'hello-vue-components/HelloA'
import HelloB from 'hello-vue-components/HelloB'
0.1.18

5 years ago

0.1.17

5 years ago

0.1.16

5 years ago

0.1.15

5 years ago

0.1.13

5 years ago

1.1.13

5 years ago

1.0.0

5 years ago

0.1.11

5 years ago

0.1.10

5 years ago

0.1.9

5 years ago

0.1.8

5 years ago

0.1.7

5 years ago

0.1.6

5 years ago

0.1.5

5 years ago

0.1.4

5 years ago

0.1.3

5 years ago

0.1.2

5 years ago

0.1.1

5 years ago

0.1.0

5 years ago