<script setup lang="ts">
const xxx = () => {
console.log("我是xxx");
};
const event = "click";
</script>
<template>
<div>
<button @[event]="xxx">尽情的点击我</button>
</div>
</template>
vue 动态设置点击事件 动态设置属性 []
阅读 68
2023-03-13
<script setup lang="ts">
const xxx = () => {
console.log("我是xxx");
};
const event = "click";
</script>
<template>
<div>
<button @[event]="xxx">尽情的点击我</button>
</div>
</template>
相关推荐
精彩评论(0)