[Vuejs]-Vue setTimeout not working with value of variable

0👍

This works as intended.

new Vue({
  el: "#app",
  mounted() {
    const remain = 3000;

    setTimeout(() => {
      console.log('set timeout remain:', remain);
    }, remain);
  },
})

Here’s a fiddle

Leave a comment