Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
smilerz committed Feb 3, 2022
1 parent cdb7c78 commit 1fe027b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion vue/src/apps/RecipeSearchView/AdvancedTreeSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,15 @@ export default {
computed: {},
watch: {
selected1: function (newVal, oldVal) {
console.log("test", newVal)
this.$emit("change", newVal)
},
initial_selected1: {
handler() {
console.log("test")
this.selected1 = this.initial_selected1
},
deep: true,
},
options: function () {
this.callbacks.forEach((callback) => {
callback()
Expand Down

0 comments on commit 1fe027b

Please sign in to comment.