遇到一个项目,需要根据某个数字,生成对应个数的标签,查找了一下,vue中直接可以使用v-for来实现: <div v-for="count in yourNum"> {{count}} <div> 简单就能实现啦!