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.
27 lines
474 B
Vue
27 lines
474 B
Vue
|
5 months ago
|
<template>
|
||
|
|
<ContactList />
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script lang="ts" setup>
|
||
|
|
import ContactList from './contact-list/index.vue'
|
||
|
|
import { onShow } from '@dcloudio/uni-app'
|
||
|
|
import { setContactTabUnread, setTabUnread } from '../../utils/msg';
|
||
|
|
import { trackInit } from '../../utils/reporter'
|
||
|
|
|
||
|
|
trackInit('ContactUIKit')
|
||
|
|
|
||
|
|
onShow(() => {
|
||
|
|
setTabUnread()
|
||
|
|
setContactTabUnread()
|
||
|
|
})
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<style>
|
||
|
|
@import "../styles/common.scss";
|
||
|
|
|
||
|
|
page {
|
||
|
|
height: 100vh;
|
||
|
|
overflow: hidden;
|
||
|
|
}
|
||
|
|
</style>
|