可以打印出语音播报初始化完成
也没有报错 但是没有声音怎么回事?试了谷歌和火狐都不行
<template>
<div class="hello" @click="speechInit">
播放
</div>
</template>
<script>
import Speech from 'speak-tts'
export default {
data () {
return {
speech:null
}
},
mounted(){
this.speechInit();
},
methods:{
speechInit(){
this.speech = new Speech();
this.speech.setLanguage('zh-CN');
this.speech.init().then(()=>{
console.log('语音播报初始化完成...')
})
},
//语音播报
speak(){
this.speech.speak({text:"语音播报测试"}).then(()=>{
console.log("播报完成...")
})
}
}
}
</script>
<!-- Add "scoped" attribute to limit CSS to this component only -->
<style scoped>
h3 {
margin: 40px 0 0;
}
ul {
list-style-type: none;
padding: 0;
}
li {
display: inline-block;
margin: 0 10px;
}
a {
color: #42b983;
}
</style>
添加了 playSpeech 方法:这个方法在点击事件中调用 speak 方法。
修改了点击事件:将点击事件从 speechInit 改为 playSpeech,用户点击时触发语音播报。