mirror of
https://github.com/yangjian102621/geekai.git
synced 2026-04-30 06:54:25 +08:00
25 lines
432 B
Vue
25 lines
432 B
Vue
<template>
|
|
<div class="audio-chat-page">
|
|
<el-button style="margin: 20px" type="primary" size="large" @click="connect()"
|
|
>开始语音对话</el-button
|
|
>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
const connect = () => {}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.audio-chat-page {
|
|
display: flex;
|
|
flex-flow: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
canvas {
|
|
background-color: transparent;
|
|
}
|
|
</style>
|