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)
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)
<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)
.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