simple underscore implementation for vueJS
npm install vue-underscoreYou know Underscore.js is a utility-belt library for JavaScript that provides support for the usual functional suspects (each, map, reduce, filter...) without extending any core JavaScript objects.
I arranged it as a vue plugin to use on your projects.


2.x bash
npm
$ npm install vue-underscore`
Usage
After use plugin on main.js. You can call it simply with 'this.$_.findwhere' (each, map, reduce, filter...)main.js
`javascript
import Vue from 'vue';
import underscore from 'vue-underscore';
import App from './App';Vue.use(underscore);
new Vue({
...App
}).$mount('#app');
`
You will be able to access underscore directly via`javascript
import {_} from 'vue-underscore';let testArr = [{id: 1}, {id:2}];
let foundInfo = _.findWhere(testArr, {id:1});
`Examples
`html``