Skip to content

EpTableSearchInput

INFO

This component does not use props, events, slots.

Component Code

vue
<template>
  <input
    v-model="modelValue"
    placeholder="Search..."
  >
</template>

<script setup>
  const modelValue = defineModel({
    type: String,
    required: true
  })
</script>