npm

<template>
  <h2>{{ message }}</h2>
  <button @click="updateMessage">更新消息</button>
</template>
<script lang="ts">
export default{
  name:'mycop',
  data(){
    return{
      message:'hiwp',
    };
  },
  methods:{
    updateMessage(){
      this.message='消息已经更新!';
    },
  },
};
</script>

 

posted @ 2025-04-28 16:24  华腾智算  阅读(8)  评论(0)    收藏  举报
https://damo.alibaba.com/ https://tianchi.aliyun.com/course?spm=5176.21206777.J_3941670930.5.87dc17c9BZNvLL