Setting v-select value programmatically does not fire @change in vuetify












0















I am trying to set v-select value programmatically, however the associated @change event does not fire. If I manually select the option, the event fires as expected.



Template:



<div id="app">
<v-app dark>
<v-select
v-model="currentItem"
:items="items"
@change="itemChanged"
/>
</v-app>
</div>


JS:



Vue.use(Vuetify);

var vm = new Vue({
el: "#app",
methods: {
itemChanged(item) {
console.log('item changed',item);
}
},
data: {
currentItem: '',
items: [
{ text: "Name", value: 'name' },
{ text: "Number", value: 'number' },
{ text: "Inputs", value: 'inputs' }
]
},
mounted() {
setTimeout(() => {
this.currentItem = 'inputs';
}, 2000);
}
});


The jsfiddle is here



Does anybody have any solutions aside from manually calling the function when setting the value programmatically?










share|improve this question



























    0















    I am trying to set v-select value programmatically, however the associated @change event does not fire. If I manually select the option, the event fires as expected.



    Template:



    <div id="app">
    <v-app dark>
    <v-select
    v-model="currentItem"
    :items="items"
    @change="itemChanged"
    />
    </v-app>
    </div>


    JS:



    Vue.use(Vuetify);

    var vm = new Vue({
    el: "#app",
    methods: {
    itemChanged(item) {
    console.log('item changed',item);
    }
    },
    data: {
    currentItem: '',
    items: [
    { text: "Name", value: 'name' },
    { text: "Number", value: 'number' },
    { text: "Inputs", value: 'inputs' }
    ]
    },
    mounted() {
    setTimeout(() => {
    this.currentItem = 'inputs';
    }, 2000);
    }
    });


    The jsfiddle is here



    Does anybody have any solutions aside from manually calling the function when setting the value programmatically?










    share|improve this question

























      0












      0








      0








      I am trying to set v-select value programmatically, however the associated @change event does not fire. If I manually select the option, the event fires as expected.



      Template:



      <div id="app">
      <v-app dark>
      <v-select
      v-model="currentItem"
      :items="items"
      @change="itemChanged"
      />
      </v-app>
      </div>


      JS:



      Vue.use(Vuetify);

      var vm = new Vue({
      el: "#app",
      methods: {
      itemChanged(item) {
      console.log('item changed',item);
      }
      },
      data: {
      currentItem: '',
      items: [
      { text: "Name", value: 'name' },
      { text: "Number", value: 'number' },
      { text: "Inputs", value: 'inputs' }
      ]
      },
      mounted() {
      setTimeout(() => {
      this.currentItem = 'inputs';
      }, 2000);
      }
      });


      The jsfiddle is here



      Does anybody have any solutions aside from manually calling the function when setting the value programmatically?










      share|improve this question














      I am trying to set v-select value programmatically, however the associated @change event does not fire. If I manually select the option, the event fires as expected.



      Template:



      <div id="app">
      <v-app dark>
      <v-select
      v-model="currentItem"
      :items="items"
      @change="itemChanged"
      />
      </v-app>
      </div>


      JS:



      Vue.use(Vuetify);

      var vm = new Vue({
      el: "#app",
      methods: {
      itemChanged(item) {
      console.log('item changed',item);
      }
      },
      data: {
      currentItem: '',
      items: [
      { text: "Name", value: 'name' },
      { text: "Number", value: 'number' },
      { text: "Inputs", value: 'inputs' }
      ]
      },
      mounted() {
      setTimeout(() => {
      this.currentItem = 'inputs';
      }, 2000);
      }
      });


      The jsfiddle is here



      Does anybody have any solutions aside from manually calling the function when setting the value programmatically?







      vue.js vuetify.js






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 20 '18 at 18:04









      Andre12Andre12

      7017




      7017
























          1 Answer
          1






          active

          oldest

          votes


















          1














          The change event is defined in such a way so it is emitted when the input is changed by user interaction (see the event documentation). If you want to monitor all the changes, you can either use the input event:



          <v-select 
          v-model="currentItem"
          :items="items"
          @input="itemChanged"/>


          https://jsfiddle.net/0qbomzta/





          or add a watcher to watch the currentItem:



          <div id="app">
          <v-app dark>
          <v-select
          v-model="currentItem"
          :items="items"/>
          </v-app>
          </div>


          In Vue instance, add:



          watch: {
          currentItem (newVal) {
          console.log('item changed', newVal);
          }
          },


          https://jsfiddle.net/w5voub3h/






          share|improve this answer


























          • yes i ended up using watchers. it's not the most elegant solution, but it works

            – Andre12
            Dec 12 '18 at 14:36











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53398937%2fsetting-v-select-value-programmatically-does-not-fire-change-in-vuetify%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          The change event is defined in such a way so it is emitted when the input is changed by user interaction (see the event documentation). If you want to monitor all the changes, you can either use the input event:



          <v-select 
          v-model="currentItem"
          :items="items"
          @input="itemChanged"/>


          https://jsfiddle.net/0qbomzta/





          or add a watcher to watch the currentItem:



          <div id="app">
          <v-app dark>
          <v-select
          v-model="currentItem"
          :items="items"/>
          </v-app>
          </div>


          In Vue instance, add:



          watch: {
          currentItem (newVal) {
          console.log('item changed', newVal);
          }
          },


          https://jsfiddle.net/w5voub3h/






          share|improve this answer


























          • yes i ended up using watchers. it's not the most elegant solution, but it works

            – Andre12
            Dec 12 '18 at 14:36
















          1














          The change event is defined in such a way so it is emitted when the input is changed by user interaction (see the event documentation). If you want to monitor all the changes, you can either use the input event:



          <v-select 
          v-model="currentItem"
          :items="items"
          @input="itemChanged"/>


          https://jsfiddle.net/0qbomzta/





          or add a watcher to watch the currentItem:



          <div id="app">
          <v-app dark>
          <v-select
          v-model="currentItem"
          :items="items"/>
          </v-app>
          </div>


          In Vue instance, add:



          watch: {
          currentItem (newVal) {
          console.log('item changed', newVal);
          }
          },


          https://jsfiddle.net/w5voub3h/






          share|improve this answer


























          • yes i ended up using watchers. it's not the most elegant solution, but it works

            – Andre12
            Dec 12 '18 at 14:36














          1












          1








          1







          The change event is defined in such a way so it is emitted when the input is changed by user interaction (see the event documentation). If you want to monitor all the changes, you can either use the input event:



          <v-select 
          v-model="currentItem"
          :items="items"
          @input="itemChanged"/>


          https://jsfiddle.net/0qbomzta/





          or add a watcher to watch the currentItem:



          <div id="app">
          <v-app dark>
          <v-select
          v-model="currentItem"
          :items="items"/>
          </v-app>
          </div>


          In Vue instance, add:



          watch: {
          currentItem (newVal) {
          console.log('item changed', newVal);
          }
          },


          https://jsfiddle.net/w5voub3h/






          share|improve this answer















          The change event is defined in such a way so it is emitted when the input is changed by user interaction (see the event documentation). If you want to monitor all the changes, you can either use the input event:



          <v-select 
          v-model="currentItem"
          :items="items"
          @input="itemChanged"/>


          https://jsfiddle.net/0qbomzta/





          or add a watcher to watch the currentItem:



          <div id="app">
          <v-app dark>
          <v-select
          v-model="currentItem"
          :items="items"/>
          </v-app>
          </div>


          In Vue instance, add:



          watch: {
          currentItem (newVal) {
          console.log('item changed', newVal);
          }
          },


          https://jsfiddle.net/w5voub3h/







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 20 '18 at 18:18

























          answered Nov 20 '18 at 18:11









          PsidomPsidom

          126k1290134




          126k1290134













          • yes i ended up using watchers. it's not the most elegant solution, but it works

            – Andre12
            Dec 12 '18 at 14:36



















          • yes i ended up using watchers. it's not the most elegant solution, but it works

            – Andre12
            Dec 12 '18 at 14:36

















          yes i ended up using watchers. it's not the most elegant solution, but it works

          – Andre12
          Dec 12 '18 at 14:36





          yes i ended up using watchers. it's not the most elegant solution, but it works

          – Andre12
          Dec 12 '18 at 14:36




















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53398937%2fsetting-v-select-value-programmatically-does-not-fire-change-in-vuetify%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          這個網誌中的熱門文章

          Tangent Lines Diagram Along Smooth Curve

          Yusuf al-Mu'taman ibn Hud

          Zucchini