Vue makes a simple random roll call

Vue makes a simple random roll call

Layout part:

<div id="app">
        <p>{{result}}</p>
        <button @click="randomName()">{{txt}}</button>
    </div>


Vue part:

 <script>
        let vm = new Vue({
            el:'#app',
            data:{
                list:["Xiaoyi","Lier","Wangsan","Saturday","Zhangwu"],
                // Randomly named content result:'',
                //Button text content txt: "Start roll call",
                // Process control switch open: true,
                // Define the timer switch timer:null
            },
            methods: {
                move(){
                    // Get a random number between 0 and the length of the current array let random = Math.floor(Math.random()*(this.list.length-0))
 
                    // Let the random number become the random subscript of the list array, assign it to result, and render it on the page this.result = this.list[random]
                },
                randomName(){
                    // Process control switch if(this.open){
                        // Define the timer and call the move method this.timer = setInterval(this.move,100)
                        this.txt = "Stop calling names"
                        this.open = false
                    }else{
                        // Clear the timer clearInterval(this.timer)
                        this.txt = "Start roll call"
                        this.open = true
                    }
                }
            }
        })
    </script>


View the results:

This is the end of this article about making a simple random roll call with Vue. For more information about making a random roll call with Vue, please search 123WORDPRESS.COM’s previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

<<:  How to hide the text in the a tag and display the image? Compatible with 360 mode rendering

>>:  Analysis of MySQL example DTID master-slave principle

Recommend

A brief discussion on the lock range of MySQL next-key lock

Preface One day, I was suddenly asked about MySQL...

Detailed explanation of JavaScript's Set data structure

Table of contents 1. What is Set 2. Set Construct...

Detailed explanation of JavaScript object conversion to primitive value

Table of contents Object.prototype.valueOf() Obje...

Personal opinion: Talk about design

<br />Choose the most practical one to talk ...

How to implement blank space in Taobao with CSS3

Make a blank space for Taobao: When you shrink th...

How to install MySQL 8.0 and log in to MySQL on MacOS

Follow the official tutorial, download the instal...

Detailed Example of JavaScript Array Methods

Table of contents Introduction Creating an Array ...

Basic principles of MySQL scalable design

Table of contents Preface 1. What is scalability?...

A brief discussion on whether MySQL can have a function similar to Oracle's nvl

Use ifnull instead of isnull isnull is used to de...

Detailed explanation of MySQL master-slave inconsistency and solutions

1. MySQL master-slave asynchrony 1.1 Network Dela...

Tutorial on installing MySQL 5.7.18 using RPM package

system: CentOS 7 RPM packages: mysql-community-cl...

How to connect Navicat to the docker database on the server

Start the mysql container in docekr Use command: ...

How to implement mysql database backup in golang

background Navicat is the best MySQL visualizatio...

Detailed process of NTP server configuration under Linux

Table of contents 1. Environment Configuration 1....