vue87-在组件中定义方法

<template>
  <div>
    <div class="geyao">{{ geyao }}</div>
    <button @click="changeName">修改</button>
  </div>
</template>
<script>
//data 必须是函数
export default {
  name: "geyao",
  data() {
    return {
      geyao: "我是歌谣",
    };
  },
  methods: {
    changeName() {
      this.geyao = "fangfang";
    },
  },
};
</script>
<style>
.geyao {
  color: aquamarine;
}
</style>

运行结果

posted @ 2022-07-05 18:41  前端导师歌谣  阅读(32)  评论(0)    收藏  举报