有条件地显示隐藏 HTML 元素

当使用 show.bind 时,元素保留在页面中,并且通过在幕后使用 display:nonedisplay:block 隐藏或可见。

export class MyViewModel {
    isVisible = false;
}
<template>
    <div show.bind="isVisible"><strong>I can be both hidden or visible, but not at the same time</strong></div>
</template>