types: optimize data types (#254)

This commit is contained in:
Fine0830
2023-04-06 21:50:57 +08:00
committed by GitHub
parent 8bb45bb453
commit 49a5481fb0
50 changed files with 263 additions and 213 deletions

View File

@@ -76,7 +76,7 @@ limitations under the License. -->
function handleClick() {
visible.value = false;
}
function setPopper(event: any) {
function setPopper(event: MouseEvent) {
event.stopPropagation();
visible.value = !visible.value;
}