display: flex and v-show in the applet, v-show does not take effect, uni-app

display: flex and v-show in the applet, v-show does not take effect,,

Solution: The
priority of display: flex style is higher than that of v-show, and v-show is actually display: none, and the priority of display: flex is higher than that of display: none.

use

:style="Judging object?'':'display:none;'"

insert image description here

Guess you like

Origin blog.csdn.net/sun6223508/article/details/132354669