vue按钮响应

1.代码

<script setup lang="ts">
import { ref } from 'vue'

defineProps<{ msg: string }>()

const count = ref(11)
//函数卸载script里
function handleClick() {
  // 处理按钮点击事件的逻辑
  console.log("按钮被点击了!");
}

</script>

<template>
  <h1>{{ msg }}</h1>

  <div class="card">
    <button type="button" @click="count++">count is {{ count }}</button>
    <p>
      Edit
      <code>components/HelloWorld.vue</code> to test HMR
    </p>
  </div>

  <p>
    Check out
    <a href="https://vuejs.org/guide/quick-start.html#local" target="_blank"
      >create-vue</a
    >, the official Vue + Vite starter
  </p>
  <p>
    Install
    <a href="https://github.com/vuejs/language-tools" target="_blank">Volar</a>
    in your IDE for a better DX
  </p>
  <p class="read-the-docs">Click on the Vite and Vue logos to learn more</p>
  
  <button type="button" @click="handleClick">My Button </button>
</template>



<style scoped>
.read-the-docs {
  color: #888;
}
</style>

 

posted @ 2024-02-26 19:04  朱小勇  阅读(24)  评论(0编辑  收藏  举报