mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-11-09 18:53:43 +08:00
feat: chat list page for mobile is ready
This commit is contained in:
@@ -4,11 +4,25 @@ import "element-plus/dist/index.css"
|
||||
import 'vant/lib/index.css';
|
||||
import App from './App.vue'
|
||||
import {createPinia} from "pinia";
|
||||
import {Cell, Image, List, NavBar, Notify, Search, Tabbar, TabbarItem, TextEllipsis} from "vant";
|
||||
import {
|
||||
Cell,
|
||||
ConfigProvider,
|
||||
Image,
|
||||
List,
|
||||
NavBar,
|
||||
Notify,
|
||||
Picker,
|
||||
Popup,
|
||||
Search,
|
||||
Tabbar,
|
||||
TabbarItem,
|
||||
TextEllipsis
|
||||
} from "vant";
|
||||
import router from "@/router";
|
||||
|
||||
const app = createApp(App)
|
||||
app.use(createPinia())
|
||||
app.use(ConfigProvider);
|
||||
app.use(Tabbar);
|
||||
app.use(TabbarItem);
|
||||
app.use(NavBar);
|
||||
@@ -17,6 +31,8 @@ app.use(Cell)
|
||||
app.use(Image)
|
||||
app.use(TextEllipsis)
|
||||
app.use(Notify)
|
||||
app.use(Picker)
|
||||
app.use(Popup)
|
||||
app.use(List);
|
||||
app.use(router).use(ElementPlus).mount('#app')
|
||||
|
||||
|
||||
Reference in New Issue
Block a user