0.0.8 • Published 5 years ago

vue-component-library.base-display-text v0.0.8

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

vue-component-library.base-display-text

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

In a module system

Install the component with NPM:

npm install vue-component-library.base-display-text

Then import the component:

import BaseDisplayText from 'vue-component-library.base-display-text'

And either globally register it for use in all components:

Vue.component(BaseDisplayText, 'vue-component-library.base-display-text')

or locally register it for use in an individual component:

export default {
components: { BaseDisplayText }
}

Usage

undefined