摘要:
javascript中的小操作 1.去掉数组中的重复值 let arr1 = ['apple', 'apple', 'banana', 'orange', 'grape', 'apple', 'grape'] const arr2 = [...new Set(arr1)] console.log(a 阅读全文
摘要:
1.混入 mixin 一个混入对象可以包含任意组件选项 // mixins.js let myMixin= { created: function () { this.hello() }, methods: { hello: function () { console.log('hello from 阅读全文
摘要:
组件内 <Button v-on:click="hello">测试节流</Button> <Input type="text" v-model="text" @input="showText"/> script 部分 import _ from 'lodash' methods: { // 节流 h 阅读全文