As a Vue beginner, I am facing an issue with changing random text every 5 seconds while the page is loading.
<template>
<section class="container">
<h1 class="title">
Welcome {{ whois }}
</h1>
</section>
<template>
<script>
export default {
data() {
return {
whois: ['Student', 'Developer', 'Programmer']
}
},
// methods: {
// randomWhois(){
// }
// },
// beforeMount() {
// this.randomWhois();
// }
}
</script>
I am looking to have the text change every 5 seconds continuously.
Example: (text changes every 5 seconds)
Welcome Student
Welcome Developer
Welcome Programmer
Thank you for your assistance!