gpt4 book ai didi

javascript - 如何在选择下拉菜单中隐藏和显示 vue js 表单向导选项卡?

转载 作者:搜寻专家 更新时间:2023-10-30 22:28:20 24 4
gpt4 key购买 nike

我已经使用 vue js 制作了一个表单向导,在第五步中,但我想在选择下拉菜单到中间步骤时使用索引隐藏和显示第三步和第四步。

查看此插件:https://cristijora.github.io/vue-form-wizard/#/?id=methods

选择隐藏时: enter image description here

然后选择显示:

enter image description here

Wizard.vue

<template>
<div>
<div class="dropdown">
<select name="" id="">
<option value="hide">hide</option>
<option value="show">show</option>
</select>
</div>
<form-wizard @on-complete="onComplete">
<tab-content title="first"
icon="ti-user">
first
</tab-content>
<tab-content title="second" icon="ti-settings">
second
</tab-content>
<tab-content title="four" icon="ti-settings">
four
</tab-content>
<tab-content title="five"
icon="ti-settings">
five
</tab-content>
<tab-content title="Last step"
icon="ti-check">
Yuhuuu! This seems pretty damn simple
</tab-content>
</form-wizard>
</div>
</template>

最佳答案

首先在Wrapper组件的data中添加选项值myVal。

您可以使用条件渲染。 docs

v-if="myVal === 'hide'"

指令隐藏和显示元素。

我们可以添加样式

.tab-container {
display:flex,
justify-content: space-between
}

关于javascript - 如何在选择下拉菜单中隐藏和显示 vue js 表单向导选项卡?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51437989/

24 4 0