Skip to content

A simple Vue plugin to augment your Vue instance methods with custom ones

License

Notifications You must be signed in to change notification settings

jjcosgrove/vue-methodly

Repository files navigation

Vue Methodly

A simple Vue plugin to augment your Vue instance methods with custom ones.

Install

NPM/Yarn

npm install vue-methodly --save

or

yarn add vue-methodly --save

Browser

<script src="https://unpkg.com/vue-methodly"></script>

Usage

Webpack

import VueMethodly from 'vue-methodly'
...
Vue.use(VueMethodly, {
  methods: [
    {
      // the name of your custom method
      name: 'myCustomMethod',

      // the native hook on which to execute
      hook: 'mounted'
    },
    ...
  ]
})
...
// some component
...
export default {
  ...
  // gets executed before the native mounted() hook
  myCustomMethod () {
    // whatever you like here
  },
  ...
}
...

Browser

Vue.use(VueMethodly, {
  methods: [
    {
      // the name of your custom method
      name: 'myCustomMethod',

      // the hook before which to execute
      hook: 'mounted'
    },
    ...
  ]
})
Vue.component('MyComponent', {
  ...
  // gets executed before the native mounted() hook
  myCustomMethod () {
    // whatever you like here
  },
  ...
})

Example

https://jsfiddle.net/yprbeh5f/

About

A simple Vue plugin to augment your Vue instance methods with custom ones

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published