added listitem-horizontal
This commit is contained in:
parent
63b1293903
commit
cb7c6e0922
7 changed files with 5143 additions and 51 deletions
|
@ -3569,6 +3569,13 @@ const app = new Vue({
|
|||
darwinShare(url) {
|
||||
ipcRenderer.send('share-menu', url)
|
||||
},
|
||||
arrayToChunk(arr, chunkSize) {
|
||||
let R = [];
|
||||
for (let i = 0, len = arr.length; i < len; i += chunkSize) {
|
||||
R.push(arr.slice(i, i + chunkSize));
|
||||
}
|
||||
return R;
|
||||
}
|
||||
}
|
||||
})
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue