UNPKG

vue2-datatable-component

Version:

The best Datatable for Vue.js 2.x which never sucks

9 lines (8 loc) 202 B
/** * replace all the elements of target with source's * @param {Array} target * @param {Array} source */ export default (target, source) => { target.splice(0, target.length, ...source) }