You cannot 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
515 B
Vue

<template>
<div class="">
<!-- 无意义空页面, 供im的全局组件引入使用 -->
</div>
</template>
<script>
export default {
// 组件名称
name: '',
// 局部注册的组件
components: {},
// 组件参数 接收来自父组件的数据
props: {},
// 组件状态值
data () {
return {
}
},
// 计算属性
computed: {},
// 侦听器
watch: {},
created () {},
mounted () {},
// 组件方法
methods: {}
}
</script>
<style scoped lang="less">
</style>