简单写个点击事件 

<template>  
  <div class="app">
    <div class="box" @click="fn"></div>
  </div>
</template>

<script>
export default {
  //导出当前组件的配置项
  //里面可以提供 data methods computed watch 生命周期 等
  methods: {
    fn () {
      alert('click')
    }
  },
  name: 'app'
}
</script>

<style>
.app {
  width: 400px;
  height: 400px;
  background-color: antiquewhite;
}
.app .box{
  width: 100px;
  height: 100px;
  background-color: aquamarine;
}
</style>

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部