closes: https://github.com/microsoft/playwright/issues/23526#issuecomment-1583074280 closes: https://github.com/microsoft/playwright/issues/23435
15 lines
314 B
Vue
15 lines
314 B
Vue
<script lang="ts" setup>
|
|
import { useAttrs } from 'vue';
|
|
defineProps<{ title: string }>();
|
|
const attrs: Record<string, any> = useAttrs();
|
|
</script>
|
|
|
|
<template>
|
|
<button
|
|
@click="$emit('submit', 'hello')"
|
|
@dblclick="() => attrs.dbclick('fallthroughEvent')"
|
|
>
|
|
{{ title }}
|
|
</button>
|
|
</template>
|