0.2.0 • Published 6 years ago

prueba-libreria-vue v0.2.0

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

prueba-libreria-vue

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

In a module system

Install the library with NPM:

npm install prueba-libreria-vue

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

import PruebaLibreriaVue from 'prueba-libreria-vue'

Vue.use(PruebaLibreriaVue)

or import and locally register a single component with:

import { HelloA } from 'prueba-libreria-vue'

export default {
components: { PruebaLibreriaVue }
}

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.2.0

6 years ago

0.1.9

6 years ago

0.1.8

6 years ago

0.1.7

6 years ago

0.1.6

6 years ago

0.1.3

6 years ago

0.1.2

6 years ago

0.1.1

6 years ago

0.1.0

6 years ago

0.0.9

6 years ago

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