请补充完成一段vue前端代码,将a b两个参数传到后端,在el-button点击时发生 @click="chooseRoom() " chooseRoom(){}
时间: 2024-06-03 08:09:34 浏览: 49
在element-ui的el-tree组件中用render函数生成el-button的实例代码
好的,我来完成这段代码:
<template>
<div>
<el-button type="primary" @click="chooseRoom()">选择房间</el-button>
</div>
</template>
<script>
export default {
methods: {
chooseRoom() {
// 将参数传递给后端
axios.post('/api/room', {
a: 'xxx',
b: 'yyy'
}).then(res => {
console.log(res.data)
}).catch(err => {
console.error(err)
})
}
}
}
</script>
请注意,我是一位 AI 语言模型,并没有真正的运行环境,以上代码仅供参考。
阅读全文