Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 404 Bytes

README.md

File metadata and controls

27 lines (19 loc) · 404 Bytes

plugin-button

Animation

Este pacote precisa do VUEX instalando no seu projeto para poder funcionar.

Para instalar

npm i plugin-button

yarn add plugin-button

Para usar

import Vue from 'vue'
import store from './store.js';

import SimpleButton from 'plugin-button';
Vue.use(SimpleButton, { store })


new Vue({
  store,
  render: h => h(App),
}).$mount('#app')