We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69ee5ef commit eb2a6f3Copy full SHA for eb2a6f3
src/views/HelpPage.vue
@@ -14,11 +14,8 @@ import InformationCard from "../components/InformationCard.vue";
14
const informations = ref([]);
15
const repo = remult.repo(Information);
16
onMounted(async () => {
17
- repo.find({
18
- skip: 4 // Skips the first 4 items (starts from the 5th, allows the fall-fest stuff to stay Anna's legacy and all that)
19
- }).then(e => {
20
- informations.value = e;
21
- });
+ const allData = await repo.find(); // Fetch all data
+ informations.value = allData.slice(4); // Skip the first 4 items
22
});
23
</script>
24
<style scoped lang="scss">
0 commit comments