v-for 迭代整数

v-for 迭代整数

v-for 也可以循环整数

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <script src="https://unpkg.com/vue@next"></script>
  </head>
  <body>
    <div id="app">
      <ul>
        <template v-for="n in 100">
          <li>{{n}}</li>
        </template>
      </ul>
    </div>
    <script>
      const app = Vue.createApp({
        data() {
          return {
            flag: false,
          }
        },
      })
      app.mount('#app')
    </script>
  </body>
</html>

image

posted @ 2022-04-27 15:02  wjxuriel  阅读(133)  评论(0)    收藏  举报