在a模块中定义的数据导入到b.vue中,不能直接在其template中使用,需要通过data(computed)中中转一下才可以使用
a模块:
export default {
// 聘用形式
hireType: [
{
id: 1,
value: '正式'
},
{
id: 2,
value: '非正式'
}
]
}
b.vue文件
//template部分
<el-option
v-for="item in hireType"
:key="item.id"
:label="item.value"
:value="item.id"
/>
//script部分
import a from '@/constant/a.js'
//const hireType=a.hireType 放在这里的数据直接在template中是无法使用的
export default{
//放到data里面
data(){
return{
hireType(用来中转的名字):a.hireType
}
},
//放到计算属性里面
computed:{
hireType(){
return Employees.hireType
}
}
}
在模板中可以使用哪里定义的数据?
data() props computed