我新建了一个自定义按钮组件MyButton,如果想在App.vue中使用该组件,并给组件添加App.vue中的方法,在方法中添加一个修饰符.native
MyButtton:
<template>
<div id="my-button">
<button>自定义按钮</button>
</div>
</template>
<style scoped>
#my-button button{
width: 100px;
height: 30px;
background: pink;
color: #fff;
}
</style>
App.vue
import MyButton from './components/myButton.vue'
components:{
MyButton
}
<MyButton @click.native="send"></MyButton>