You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
472 B

<template>
<div>
<input type="text" @change="_onChange" :value="value">
</div>
</template>
<script>
export default {
name: 'collection-argument',
methods: {
_onChange({target: {value: newValue}})
{
this.$emit('change', newValue);
},
},
props: {
value: {
type: null,
required: true,
},
}
}
</script>