This commit is contained in:
bkfox
2024-04-19 15:06:23 +02:00
parent 1d321a0de6
commit 07d72d799d
60 changed files with 503 additions and 306 deletions

View File

@ -27,7 +27,8 @@
"eslint-plugin-vue": "^8.0.3",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"vue-cli": "^2.9.6"
"vue-cli": "^2.9.6",
"webpack-cli": "^5.1.4"
},
"eslintConfig": {
"root": true,

View File

@ -232,6 +232,8 @@ export default {
: fetch(url, Model.getOptions()).then(d => d.json())
promise = promise.then(items => {
if(items.results)
items = items.results
this.items = items.filter((i) => i) || []
this.promise = null;
this.move(0)