HTML
Modal 弹窗
template
<button @click="dialogRef.showModal()">提示框</button>
<dialog @click="dialogRef.close()" ref="dialogRef">我是提示内容</dialog>
Details、Summary 可折叠内容
More Information
This is the hidden content that will be revealed when you click on "More Information".
template
<details>
<summary>More Information</summary>
<p>This is the hidden content that will be revealed when you click on "More Information".</p>
</details>
贡献者
暂无相关贡献者