<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <script src="https://cdn.jsdelivr.net/npm/vue@2/dist/vue.js"></script>
  </head>

  <body>
    <div >
      <p>{{ message }}</p>
      <!-- 只能输入数字 -->
      <input type="number" name=""  />
    </div>

    <script>
      const app = new Vue({
        el: '#app',
        data: {
          message: 'Hello Vue.js!',
        },
      })
    </script>
  </body>
</html>

vue v-model number输入数字

相关文章:

  • 2022-02-12
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-06
  • 2022-12-23
猜你喜欢
  • 2021-09-04
  • 2022-12-23
  • 2021-05-16
  • 2021-06-09
  • 2021-07-19
  • 2021-07-25
  • 2021-06-22
相关资源
相似解决方案