我正在尝试做某事,我不知道从哪里开始。所以基本上它是一个提交按钮,如果它被点击我必须显示两个单选按钮以从其中一个中选择,当它不仅存在提交按钮时。现在我只有这段代码,我的所有按钮都没有条件显示,因为我不知道如何或在哪里使用它。你能帮帮我吗?我正在使用 Ant design vue 进行设计,这就是我有 a- 属性的原因。这是代码:
<template>
<a-button type="primary" class="mb-4 text-center float-right ">Reject</a-button>
<a-button type="primary" class="mb-4 text-center mr-1 float-right" >Confirm</a-button>
<a-radio-group name="radioGroup" class="float-right">
<a-radio value="1">A</a-radio>
<a-radio value="2">B</a-radio>
</a-radio-group>
</template>
<script>
import { defineComponent, onMounted, reactive, ref, unref, toRaw } from 'vue'
export default {
name :'Okbutton',
}
</script>