Migrate another component to use correct event emitting

This commit is contained in:
Ramon Wenger 2023-04-19 10:07:31 +02:00
parent f19ed06947
commit 92f9831cc1
2 changed files with 22 additions and 24 deletions

View File

@ -9,7 +9,7 @@
rows="1"
class="submission-form__textarea"
v-auto-grow
@input="$emit('input', $event.target.value)"
@input="input"
/>
<div
class="submission-form__save-status submission-form__save-status--saved"
@ -26,29 +26,27 @@
</div>
</template>
<script>
<script setup lang="ts">
import { defineAsyncComponent } from 'vue';
const TickCircleIcon = defineAsyncComponent(() =>
import('@/components/icons/TickCircleIcon.vue')
);
const LoadingIcon = defineAsyncComponent(() =>
import('@/components/icons/LoadingIcon.vue')
);
const TickCircleIcon = defineAsyncComponent(() => import('@/components/icons/TickCircleIcon.vue'));
const LoadingIcon = defineAsyncComponent(() => import('@/components/icons/LoadingIcon.vue'));
export default {
props: {
inputText: String,
saved: Boolean,
readonly: Boolean,
placeholder: {
type: String,
default: 'Ergebnis erfassen',
},
},
components: {
TickCircleIcon,
LoadingIcon,
},
interface Props {
inputText: string;
saved: boolean;
readonly: boolean;
placeholder: string;
}
withDefaults(defineProps<Props>(), {
placeholder: 'Ergebnis erfassen',
});
const emit = defineEmits(['input']);
const input = (e: Event) => {
const value = (e.target as HTMLInputElement).value;
emit('input', value);
};
</script>

View File

@ -18,6 +18,7 @@
<script setup lang="ts">
import { computed } from 'vue';
import { getUniqueId } from '@/helpers/id';
interface Props {
label: string;
@ -35,11 +36,10 @@ const cyId = computed(() => {
return `page-form-input-${props.label.toLowerCase()}`;
});
const id = '3'; //todo: make unique id
const id = getUniqueId(); //todo: make unique id
const input = (e: Event) => {
const value = (e.target as HTMLInputElement).value;
console.log(value);
emit('input', value);
};
</script>