[Vuejs]-The API request from the Vuejs component is executed twice

-1👍

Try to change the following code :

<template>
  <form>
    title : <input v-model="todo.title">
    content : <input v-model="todo.content">
    <button v-on:click.once="create" >Create</button>
  </form>
</template>

Leave a comment