1.首先创建一个自定义组件
Vue.component('test-component',{
template:`<div id="el"><input @input="change"><button @click="getInputData">点我看input数据</button></div>`,
event:'inputData',
methods:{
change:function(e){
//this.$emit('change', e.target.value);
this.inputData=e.target.value;
},
getInputData:function(){
console.log(this.inputData);
}
}
});
2.在html中调用组件
<template>
<test-component></test-component>
</template>
```