1
0
mirror of https://github.com/lana-k/sqliteviz.git synced 2025-12-06 18:18:53 +08:00

#63 update slot syntax

This commit is contained in:
lana-k
2024-10-05 15:43:22 +02:00
parent 378b9fb580
commit b30b2181e4

View File

@@ -16,13 +16,13 @@
open-direction="bottom" open-direction="bottom"
placeholder="" placeholder=""
> >
<template slot="maxElements"> <template #maxElements>
<span class="no-results">No Results</span> <span class="no-results">No Results</span>
</template> </template>
<template slot="placeholder">Choose columns</template> <template #placeholder>Choose columns</template>
<template slot="noResult"> <template #noResult>
<span class="no-results">No Results</span> <span class="no-results">No Results</span>
</template> </template>
</multiselect> </multiselect>
@@ -45,13 +45,13 @@
open-direction="bottom" open-direction="bottom"
placeholder="" placeholder=""
> >
<template slot="maxElements"> <template #maxElements>
<span class="no-results">No Results</span> <span class="no-results">No Results</span>
</template> </template>
<template slot="placeholder">Choose rows</template> <template #placeholder>Choose rows</template>
<template slot="noResult"> <template #noResult>
<span class="no-results">No Results</span> <span class="no-results">No Results</span>
</template> </template>
</multiselect> </multiselect>
@@ -73,7 +73,7 @@
open-direction="bottom" open-direction="bottom"
placeholder="Choose a function" placeholder="Choose a function"
> >
<template slot="noResult"> <template #noResult>
<span class="no-results">No Results</span> <span class="no-results">No Results</span>
</template> </template>
</multiselect> </multiselect>
@@ -123,7 +123,7 @@
open-direction="bottom" open-direction="bottom"
placeholder="Choose a view" placeholder="Choose a view"
> >
<template slot="noResult"> <template #noResult>
<span class="no-results">No Results</span> <span class="no-results">No Results</span>
</template> </template>
</multiselect> </multiselect>