stadtratmonitor-vue/src/components/Search.vue

13 lines
147 B
Vue
Raw Normal View History

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>
<div>Search</div>
</template>