2023-06-07 17:31:37 +02:00
|
|
|
<script lang="ts">
|
2023-06-07 22:12:45 +02:00
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
searchTerm: '',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-06-07 17:31:37 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-06-11 16:50:44 +02:00
|
|
|
<form>
|
|
|
|
<input class="p-2" type="search" placeholder="Suche …">
|
|
|
|
</form>
|
2023-06-07 17:31:37 +02:00
|
|
|
</template>
|