How do you make a mask for the birth date in picker vue.js?



  • There's a player who's responsible for the date of birth, so you can pick a date from the calendar:

    <el-date-picker id="date_birth" type="date" placeholder="Дата" v-model="user.date_birth"></el-date-picker>

    We also need to inject a masked keyboard so that the drawings themselves are YYYY-MM-DD. How can you do that, say good people?



  • For masking the value el-date-picker Attribut format

    Example:

    <el-date-picker format="YYYY/MM/DD"/>
    


Suggested Topics

  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2
  • 2