前言:
因为组件是可复用的 Vue 实例,所以它们与 new Vue 接收相同的选项,例如 data、computed、watch、methods 以及生命周期钩子等。仅有的例外是像 el 这样根实例特有的选项。
注册组件
新建组件
右键新建一个dataName.vue的组件 新建好之后的组件 dataname代码
<template>
<div>
<div class="combox">
<el-select v-model.trim="name"
@change="transRuleName"
placeholder="默认显示内容">
<el-option
v-for="item in options"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
</div>
</div>
</template>
<style scoped>
.exInput {
text-align: center;
}
>>> .el-input__inner {
border: 2px solid #dcdfe6;
}
.input {
width: 70%;
}
</style>
<script>
export default {
inject: ['next'],
props: ['ruleName'],
data: function() {
return {
name: this.ruleName,
options: [
{
value: '选择1',
label: '选择1'
}, {
value: '选择2',
label: '选择2'
}, {
value: '选择3',
label: '选择3'
} ]
}
},
mounted() {
this.$nextTick(() => {
this.$refs.code.focus()
})
},
watch: {
ruleName(val, newval) {
this.name = val
},
},
methods: {
clickitem(e) {
e === this.radio ? (this.radio = '') : (this.radio = e)
},
transRuleName() {
this.$emit('ListenRuleName', this.name)
},
enterNextClick() {
this.next()
},
focus(event) {
event.currentTarget.select()
},
},
}
</script>
<style scoped>
.combox{
text-align: center;
text-align-last: center;
margin: auto auto;
margin-top: 150px;
}
</style>
引入组件
在需要使用刚才创建的那个组件的,窗体里引入刚才的那个组件 在里引入刚才创建的那个组件,引入方式如上图所示
然后再注册成具体的组件,如下图所示
使用组件
上面已经注册好组件了,下面就是在template里使用了 解释:可以看到刚才注册的组件dataName现在,作为标签在template里使用。其实组件可以理解为自定义标签
$Emit(实现父子组件通信)
前提条件是已经注册好组件了,下面就可以使用组件通信了。
父组件
在template引入的组件里定义一个事件,如下
并且对应着还得定义一个方法,如图所示 “transRuleName” 等会儿在子组件里使用
在methods方法里定义如下方法
//用于接收ListenRuleName事件接收的值
transRuleName(name) {
this.ruleName = name;
}
ruleName参数是声明在data属性里的,用于存储transRuleName方法接收的值
data: function () {
return {
ruleName: ""
};
}
子组件
这里已下拉框为例 template代码
<template>
<div>
<div class="combox">
<el-select v-model.trim="name"
@change="transRuleName"
placeholder="请选择角色">
<el-option
v-for="item in options"
:key="item.value"
:label="item.label"
:value="item.value"
>
</el-option>
</el-select>
</div>
</div>
</template>
给下拉框绑定change事件 “transRuleName”
change事件
//子組件向父組件通信
transRuleName() {
this.$emit('ListenRuleName', this.name)
}
参数: ListenRuleName 这就是刚才上面在父组件里定义的事件名字, this.$emit(‘ListenRuleName’, this.name) 这段代码的意思是把后面this.name参数的内容推到 ListenRuleName 事件里 name参数定义方法和上面父组件里的方法一样
感谢阅读~~~~~ 分享到此结束
|