0.0.5 • Published 4 years ago

inovesaudechat v0.0.5

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

inovesaudechat

An example component library built with Vue CLI 3.

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/inovesaudechat"></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/inovesaudechat/HelloA"></script>
<script>
new Vue({ el: '#app' })
</script>

In a module system

Install the library with NPM:

npm install inovesaudechat

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

import Inovesaudechat from 'inovesaudechat'

Vue.use(Inovesaudechat)

or import and locally register a single component with:

import { HelloA } from 'inovesaudechat'

export default {
components: { Inovesaudechat }
}

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 'inovesaudechat/HelloA'
import HelloB from 'inovesaudechat/HelloB'
0.0.5

4 years ago

0.0.4

4 years ago

0.0.3

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago