有條件地顯示隱藏 HTML 元素
當使用 show.bind
時,元素保留在頁面中,並且通過在幕後使用 display:none
或 display: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>