29 lines
335 B
Vue
29 lines
335 B
Vue
<template>
|
|
<div class='lemon-message-list'>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'MessageList',
|
|
inject: ["control"],
|
|
data () {
|
|
return {
|
|
|
|
};
|
|
},
|
|
created () {
|
|
|
|
},
|
|
mounted () {
|
|
},
|
|
computed: {},
|
|
watch: {},
|
|
methods: {
|
|
|
|
}
|
|
}
|
|
</script>
|
|
<style lang='scss'>
|
|
</style> |