UNPKG

vue-methodly

Version:

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

17 lines (15 loc) 297 B
import resolve from 'rollup-plugin-node-resolve' import babel from 'rollup-plugin-babel' export default { input: 'src/vue-methodly.js', output:{ file: 'dist/vue-methodly.esm.js', format: 'esm' }, plugins: [ resolve(), babel({ exclude: 'node_modules/**' }) ] }