Skip to content

Commit

Permalink
fix(bugs): 修复了一些已知的BUG
Browse files Browse the repository at this point in the history
  • Loading branch information
HammCn committed Aug 18, 2023
1 parent 3f041cd commit e85eefe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ if (!import.meta.env.DEV) {
}

app.directive('tip', {
mounted(el, binding) {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
mounted(el: any, binding: any) {
el.addEventListener('mouseover', () => {
if (binding.value) {
AirStore().tooltipRef = el
Expand Down

0 comments on commit e85eefe

Please sign in to comment.