
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
functional-button
Advanced tools
Useful functional button for ElementUI
Project is generated by https://github.com/justforuse/vue-share-components
npm install --save functional-button
Install all the components:
import Vue from 'vue'
import FunctionalButton from 'functional-button'
Vue.use(FunctionalButton)
Use specific components:
import Vue from 'vue'
import { Test } from 'functional-button'
Vue.component('test', Test)
⚠️ A css file is included when importing the package. You may have to setup your bundler to embed the css in your page.
Install all the components:
import 'functional-button/dist/functional-button.css'
import FunctionalButton from 'functional-button/dist/functional-button.common'
Vue.use(FunctionalButton)
Use specific components:
import 'functional-button/dist/functional-button.css'
import { DeferBtn } from 'functional-button/dist/functional-button.common'
Vue.component('DeferBtn', DeferBtn)
⚠️ You may have to setup your bundler to embed the css file in your page.
<link rel="stylesheet" href="functional-button/dist/functional-button.css"/>
<script src="vue.js"></script>
<script src="functional-button/dist/functional-button.browser.js"></script>
The plugin should be auto-installed. If not, you can install it manually with the instructions below.
Install all the components:
Vue.use(FunctionalButton)
Use specific components:
Vue.component('DeferBtn', FunctionalButton.DeferBtn)
Install all the components:
import Vue from 'vue'
import FunctionalButton from 'functional-button/src'
Vue.use(FunctionalButton)
Use specific components:
import Vue from 'vue'
import { DeferBtn } from 'functional-button/src'
Vue.component('DeferBtn', DeferBtn)
⚠️ You need to configure your bundler to compile .vue files. More info in the official documentation.
TODO
https://codesandbox.io/s/24jx3zz2ny
The first time you create or clone your plugin, you need to install the default dependencies:
npm install
This will run webpack in watching mode and output the compiled files in the dist folder.
npm run dev
While developping, you can follow the install instructions of your plugin and link it into the project that uses it.
In the plugin folder:
npm link
In the other project folder:
npm link functional-button
This will install it in the dependencies as a symlink, so that it gets any modifications made to the plugin.
You may have to login to npm before, with npm adduser. The plugin will be built in production mode before getting published on npm.
npm publish
This will build the plugin into the dist folder in production mode.
npm run build
FAQs
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.

Security News
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.