Feat custom multiselect (#12)

* WIP Multiselect

* Reworked Multiselect into multiple Components
- Also finished feature implementation

---------

Co-authored-by: adroslice <adriel.m.slice@gmail.com>
This commit is contained in:
Samuel Lorch 2023-04-11 19:43:09 +02:00 committed by GitHub
parent 821fd28863
commit 53fca4f340
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 315 additions and 3 deletions

View file

@ -23,7 +23,7 @@ onMounted(async() => {
</script>
<template>
<div>
<div style="overflow-y: auto;">
<PageHeader title="Dashboard">
</PageHeader>
<div v-if="!loading" v-for="(link, index) in links" :key="index">
@ -32,7 +32,6 @@ onMounted(async() => {
<div v-else>
Loading...
</div>
</div>
</template>