Files
graphfx/ui/Components/Value/String.vue
2019-01-02 19:16:16 +01:00

14 lines
193 B
Vue

<template>
<input v-model="value.value">
</template>
<script>
export default {
props: {
value: {
type: null,
required: true,
}
}
}
</script>