0.0.8 • Published 6 years ago

vue-component-library v0.0.8

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

vue-component-library

Go to the official documentation page for more instructions and usage guidelines.

Installation

Directly in the browser

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

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

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

In a module system

Install the component with NPM:

npm install vue-component-library

Then import the component:

import VueComponentLibrary from 'vue-component-library'

And either globally register it for use in all components:

Vue.component(VueComponentLibrary, 'vue-component-library')

or locally register it for use in an individual component:

export default {
components: { VueComponentLibrary }
}

Usage

undefined
0.0.8

6 years ago

0.0.7

6 years ago

0.0.6

6 years ago

0.0.5

6 years ago

0.0.4

6 years ago

0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago