zl程序教程

您现在的位置是:首页 >  前端

当前栏目

vue 动态设置点击事件 动态设置属性 []

Vue事件属性 设置 动态 点击
2023-09-27 14:27:48 时间

 

<script setup lang="ts">
const xxx = () => {
  console.log("我是xxx");
};
const event = "click";
</script>

<template>
  <div>
    <button @[event]="xxx">尽情的点击我</button>
  </div>
</template>