mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
Autocomplete: Set input value on prop change
This commit is contained in:
parent
c20fd14c05
commit
71a23679f0
@ -13,6 +13,13 @@ export default {
|
||||
render(h) {
|
||||
return this.getWrapperElement(h);
|
||||
},
|
||||
watch: {
|
||||
// prop change does not change the value of input
|
||||
// this only happens for Autocomplete
|
||||
value(newValue) {
|
||||
this.$refs.input.value = newValue;
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
getInputListeners() {
|
||||
return {
|
||||
|
@ -8,11 +8,6 @@ import { _ } from 'frappejs/utils';
|
||||
|
||||
export default {
|
||||
extends: Autocomplete,
|
||||
watch: {
|
||||
value(newValue) {
|
||||
this.$refs.input.value = newValue;
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
async getList(query) {
|
||||
const list = await frappe.db.getAll({
|
||||
|
Loading…
Reference in New Issue
Block a user