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.
apply-assistant-v3/root/NEUIKit/pages/Contact/index.vue

26 lines
441 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>