vue-component-library.base-input

0.0.8 • Public • Published

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

In a module system

Install the component with NPM:

npm install vue-component-library.base-input

Then import the component:

import BaseInput from 'vue-component-library.base-input'

And either globally register it for use in all components:

Vue.component(BaseInput, 'vue-component-library.base-input')

or locally register it for use in an individual component:

export default {
components: { BaseInput }
}

Usage

undefined

/vue-component-library.base-input/

    Package Sidebar

    Install

    npm i vue-component-library.base-input

    Weekly Downloads

    7

    Version

    0.0.8

    License

    MIT

    Unpacked Size

    157 kB

    Total Files

    15

    Last publish

    Collaborators

    • frederikwagner