mirror of
https://github.com/muety/wakapi.git
synced 2025-12-05 22:20:24 -08:00
9 lines
565 B
HTML
9 lines
565 B
HTML
<template id="entity-filter-template">
|
|
<div :id="type + '-filter-form'" class="entity-filter-control">
|
|
<label :for="'select-' + type + '-filter'"><span class="iconify inline mr-1" data-icon="mdi:filter"></span> ${type}</label>
|
|
<select name="project" :id="'select-' + type + '-filter'" class="select-default" v-model="selection" @input="onSelectionUpdated">
|
|
<option :value="null">Filter by ${type} ...</option>
|
|
<option v-for="o in options" :value="o">{{ "{{" }}o{{ "}}" }}</option>
|
|
</select>
|
|
</div>
|
|
</template> |