Socket
Book a DemoInstallSign in
Socket

@reciprocity/button

Package Overview
Dependencies
Maintainers
3
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@reciprocity/button

A generic button Vue.js component

latest
npmnpm
Version
0.1.11
Version published
Maintainers
3
Created
Source

Button

A generic button Vue.js component.

Dependencies

This component depends on bootstrap, bootstrap-vue, and @reciprocity/bootstrap packages. So make sure you have those installed and imported wherever you're gonna use this component.

Installation

npm install @reciprocity/button

or

yarn add @reciprocity/button

Usage

This component is meant to be used as an ES module, so you can import it using the ES6 import syntax.

After importing you can just register it with Vue. Eg:

app.vue

<template>
	<zen-button>Click me!</zen-button>
</template>
<script>
	import ZenButton from '@reciprocity/button';

	export default Vue.extend({
		name: 'My App',
		components: {
			ZenButton
		}
	};
</script>

FAQs

Package last updated on 25 Sep 2019

Did you know?

Socket

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