简单写个点击事件
<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>
本站资源均来自互联网,仅供研究学习,禁止违法使用和商用,产生法律纠纷本站概不负责!如果侵犯了您的权益请与我们联系!
转载请注明出处: 免费源码网-免费的源码资源网站 » vue28:组件化开发和根组件
发表评论 取消回复