扫码关注官方订阅号
vue能循环一个固定变量嘛?比如说我num=3我要循环num次
Document
学习是最好的投资!
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <script src="https://unpkg.com/vue@2.3.3"></script> </head><body> <p id="app"> <p v-for="n in full"></p> <p v-if="ishalf"></p> <p v-for="n in empty"></p> </p> <script> const MAXSIZE = 5; var vm = new Vue({ el : '#app', props: { score:{ type: Number, defualt: 4.5 } }, data:{ num : 3 }, created(){ this.full = Math.floor(this.score); this.ishalf = this.score!=this.full; this.empty = Math.floor(MAXSIZE-this.score); } }) </script> </body></html>
微信扫码关注PHP中文网服务号
QQ扫码加入技术交流群
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
PHP学习
技术支持
返回顶部
学习是最好的投资!