v1.7.1 - lint updates

This commit is contained in:
LINING-PC\lining
2026-01-11 22:22:15 +08:00
parent bed3665e59
commit 8e8a90ca6a
15 changed files with 399 additions and 398 deletions
+2 -2
View File
@@ -8,7 +8,7 @@ import type { ComponentPublicInstance } from 'vue'
*/
export function mountComponent<T extends ComponentPublicInstance>(
component: any,
options = {}
options = {},
): VueWrapper<T> {
return mount(component, {
global: {
@@ -48,7 +48,7 @@ export function sleep(ms: number): Promise<void> {
export function triggerMouseEvent(
element: Element,
eventType: string,
options: MouseEventInit = {}
options: MouseEventInit = {},
) {
const event = new MouseEvent(eventType, {
bubbles: true,