@binalogue/skeleton-vue-components

1.0.0Β β€’Β PublicΒ β€’Β Published

skeleton-vue-components

πŸ–– 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/@binalogue/skeleton-vue-components"></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/@binalogue/skeleton-vue-components/HelloA"></script>
<script>
new Vue({ el: '#app' })
</script>

In a module system

Install the library with NPM:

npm install @binalogue/skeleton-vue-components

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

import SkeletonVueComponents from '@binalogue/skeleton-vue-components'

Vue.use(SkeletonVueComponents)

or import and locally register a single component with:

import { HelloA } from '@binalogue/skeleton-vue-components'

export default {
components: { SkeletonVueComponents }
}

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 '@binalogue/skeleton-vue-components/HelloA'
import HelloB from '@binalogue/skeleton-vue-components/HelloB'

Readme

Keywords

none

Package Sidebar

Install

npm i @binalogue/skeleton-vue-components

Weekly Downloads

0

Version

1.0.0

License

MIT

Unpacked Size

429 kB

Total Files

29

Last publish

Collaborators

  • mgoigfer