2.0.2-alpha.0 • Published 5 years ago

hvlib.hello-b v2.0.2-alpha.0

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

hvlib.hello-b

A component that says "HelloB" with green text.

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/hvlib.hello-b"></script>
<script>
new Vue({ el: '#app' })
</script>

In a module system

Install the component with NPM:

npm install hvlib.hello-b

Then import the component:

import HelloB from 'hvlib.hello-b'

And either globally register it for use in all components:

Vue.component(HelloB, 'hvlib.hello-b')

or locally register it for use in an individual component:

export default {
components: { HelloB }
}

Usage

<!-- No props or content are necessary. -->
<hello-b></hello-b>