Text.vue 423 B

1234567891011121314151617181920212223242526272829
  1. <template>
  2. <v-text-field
  3. v-model="text"
  4. type="text"
  5. class="search-bar"
  6. name="search-query"
  7. outlined
  8. append-icon="mdi-magnify"
  9. :label="$t('what') + ' ?'"
  10. @change="$emit('change', text)"
  11. @click:append="$emit('change', text)"
  12. />
  13. </template>
  14. <script>
  15. export default {
  16. data () {
  17. return {
  18. text: ''
  19. }
  20. }
  21. }
  22. </script>
  23. <style>
  24. .v-input__control {
  25. height: 56px;
  26. }
  27. </style>