ArenMg/src/main/webapp/assets/js/components/widgets/searchBox.vue

13 lines
379 B
Vue
Raw Normal View History

2021-04-16 08:34:24 +00:00
<template>
<label class="input-field inline search-box">
<i class="material-icons prefix">search</i>
<input v-bind:value="value" v-on:input="$emit('input', $event.target.value)" type="text"/>
<label v-if="label" for="search">Recherche</label>
</label>
</template>
<script>
module.exports = {
props: ['value', 'label']
};
</script>