我是 Vue 的初学者,在页面加载时以 5 秒的间隔更改随机文本时遇到一些问题。
<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>
Run Code Online (Sandbox Code Playgroud)
我希望当间隔5秒时,我的文字总是改变。
示例:(总是在 5 秒内更改)
欢迎学生
欢迎开发者
欢迎程序员
非常感谢!