feat: vue-mobile => 完善移动端聊天列表页功能

This commit is contained in:
RockYang
2023-06-25 17:01:04 +08:00
parent d20cc367b8
commit f01fdd0070
11 changed files with 385 additions and 41 deletions

View File

@@ -5,8 +5,15 @@ import 'vant/lib/index.css';
import App from './App.vue'
import {createPinia} from "pinia";
import {
Button,
Cell,
CellGroup,
ConfigProvider,
DropdownItem,
DropdownMenu,
Field,
Form,
Icon,
Image,
List,
NavBar,
@@ -14,6 +21,8 @@ import {
Picker,
Popup,
Search,
Sticky,
SwipeCell,
Tabbar,
TabbarItem,
TextEllipsis
@@ -34,6 +43,15 @@ app.use(Notify)
app.use(Picker)
app.use(Popup)
app.use(List);
app.use(Form);
app.use(Field);
app.use(CellGroup);
app.use(Button);
app.use(DropdownMenu);
app.use(Icon);
app.use(DropdownItem);
app.use(Sticky);
app.use(SwipeCell);
app.use(router).use(ElementPlus).mount('#app')