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.
26 lines
435 B
Vue
26 lines
435 B
Vue
<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>
|
|
|
|
page {
|
|
height: 100vh;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|