vue写数字翻牌效果_封装vue版数字翻牌器

{ {item2}}
39fcb63e217996ac97b1038a697ab1f0.png

js部分

export default {        props:{        number:Number        },        data(){            return{                list:[],                numList: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, '.']            }        },        mounted(){            this.scroll();        },        methods:{            scroll(){                this.list=this.number.toString().split('');                let arr=[];              

你可能感兴趣的:(vue写数字翻牌效果)