24 lines
577 B
Vue
24 lines
577 B
Vue
<template>
|
|
<input style="width:max-content;height: 24px;" id="arttitle" name="arttitle" v-model="selectedArtTitle" type="text">
|
|
</template>
|
|
<script>
|
|
export default {
|
|
props: ['data', 'lang', 'settings'],
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
computed: {
|
|
selectedArtTitle: {
|
|
get: function () {
|
|
return this.$store.state.selected['arttitle'];
|
|
},
|
|
set: function (state) {
|
|
this.$store.commit('setSelected', {item: 'arttitle', state: state});
|
|
this.$emit('reloadData')
|
|
}
|
|
},
|
|
},
|
|
}
|
|
</script>
|