Socket
Socket
Sign inDemoInstall

hello-vue-components

Package Overview
Dependencies
21
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    hello-vue-components

An example component library built with Vue CLI 3.


Version published
Weekly downloads
1
decreased by-50%
Maintainers
1
Install size
420 kB
Created
Weekly downloads
 

Readme

Source

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

In a module system

Install the library with NPM:

npm install hello-vue-components

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

import HelloVueComponents from 'hello-vue-components'

Vue.use(HelloVueComponents)

or import and locally register a single component with:

import { HelloA } from 'hello-vue-components'

export default {
components: { HelloVueComponents }
}
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'

FAQs

Last updated on 12 Nov 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc