Automatically returns to the first page after entering content in vue-fullpage input

needs to implement the function of single screen scrolling on mobile. After vue-fullpage, scrolls to the second page, each element entered in the input box will be returned to the previous page. Do you have any students who have encountered this question to help you answer

?

input is bound using v-model. If you don"t add v-model binding input, you will not return to the previous page

.

related codes

the following is the configuration of vue-fullpage
opts: {

          start: 0,
          dir: "v",
          loop: false,
          duration: 500,
          beforeChange: function (prev, next) {
            console.log("before", prev, next)
          },
          afterChange: function (prev, next) {
            console.log("after", prev, next)
          }
        }



May.13,2021
Menu