You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
587 B
35 lines
587 B
<template name="im-item">
|
|
<view v-if="item.type=='diy'" :item="item" :index="index" :isSelf="isSelf">
|
|
自定义
|
|
</view>
|
|
<view v-else>
|
|
暂不支持该消息类型
|
|
</view>
|
|
</template>
|
|
<script>
|
|
// import imVoice from '@/components/message/im-card-voice.vue';
|
|
export default {
|
|
|
|
name : "im-item",
|
|
components: {
|
|
// imVoice
|
|
},
|
|
props : {
|
|
item:{type:Object, default:function(){return {};}},
|
|
index:{type:Number, default:0},
|
|
isSelf:{type:Boolean, default:false},
|
|
},
|
|
data() {
|
|
return {
|
|
}
|
|
},
|
|
created : function(){
|
|
},
|
|
methods:{
|
|
|
|
}
|
|
}
|
|
</script>
|
|
<style scoped>
|
|
|
|
</style>
|