vue中使用lodash


1.安裝:npm i --save lodash

2.引入:import _from 'lodash'  

3.使用:

<template>
  <div class="template1">mixins組件的值是:{{num}}
    <button @click="myclick">測試</button>
  </div>
</template>

<script>
import { mymixins } from "./mixins.js";
export default {
  mixins: [mymixins],
  created() {
    this.num++;
  },
  methods: {
    myclick() {
      var array = [1];
      var other = _.concat(array, 2, [3], [[4]]);
      console.log(other);
    }
  },
  mounted() {
    this.mytest().then(res => {
      console.log(res);
    });
  }
};
</script>

<style>
.template1 {
  font-size: 28px;
  color: red;
}
button{
  width: 100px;
  height: 30px;
  color: red;
}
</style>

 

單個中使用:let _ require('lodash')  _.debounce(this.mytest,1000,false)

 
 
         
         
       


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM