mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-18 01:06:39 +08:00
117 lines
2.2 KiB
JavaScript
117 lines
2.2 KiB
JavaScript
// * +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
// * Copyright 2023 The Geek-AI Authors. All rights reserved.
|
|
// * Use of this source code is governed by a Apache-2.0 license
|
|
// * that can be found in the LICENSE file.
|
|
// * @Author yangjian102621@163.com
|
|
// * +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
|
|
import {createApp} from 'vue'
|
|
import ElementPlus from "element-plus"
|
|
import "element-plus/dist/index.css"
|
|
import '@/assets/iconfont/iconfont.css';
|
|
import 'vant/lib/index.css';
|
|
import App from './App.vue'
|
|
import {createPinia} from "pinia";
|
|
import {
|
|
ActionSheet,
|
|
Badge,
|
|
Button,
|
|
Cell,
|
|
CellGroup,
|
|
Circle,
|
|
Col,
|
|
Collapse,
|
|
CollapseItem,
|
|
ConfigProvider,
|
|
Dialog,
|
|
Divider,
|
|
DropdownItem,
|
|
DropdownMenu,
|
|
Empty,
|
|
Field,
|
|
Form,
|
|
Grid,
|
|
GridItem,
|
|
Icon,
|
|
Image,
|
|
ImagePreview,
|
|
Lazyload,
|
|
List,
|
|
Loading,
|
|
NavBar,
|
|
NoticeBar,
|
|
Notify,
|
|
Overlay,
|
|
Picker,
|
|
Popup,
|
|
Row,
|
|
Search,
|
|
ShareSheet,
|
|
Slider,
|
|
Sticky,
|
|
SwipeCell,
|
|
Switch,
|
|
Tab,
|
|
Tabbar,
|
|
TabbarItem,
|
|
Tabs,
|
|
Tag,
|
|
TextEllipsis,
|
|
Uploader
|
|
} from "vant";
|
|
import {router} from "@/router";
|
|
import 'v3-waterfall/dist/style.css'
|
|
import V3waterfall from "v3-waterfall";
|
|
|
|
const app = createApp(App);
|
|
app.use(createPinia());
|
|
app.use(ConfigProvider);
|
|
app.use(Tabbar);
|
|
app.use(TabbarItem);
|
|
app.use(NavBar);
|
|
app.use(Search);
|
|
app.use(Cell)
|
|
app.use(Image)
|
|
app.use(TextEllipsis)
|
|
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(Dialog);
|
|
app.use(ShareSheet);
|
|
app.use(Switch);
|
|
app.use(Uploader);
|
|
app.use(Tag);
|
|
app.use(V3waterfall)
|
|
app.use(Overlay)
|
|
app.use(Col)
|
|
app.use(Row)
|
|
app.use(Slider)
|
|
app.use(Badge)
|
|
app.use(Collapse);
|
|
app.use(CollapseItem);
|
|
app.use(Grid);
|
|
app.use(GridItem);
|
|
app.use(Empty);
|
|
app.use(Circle);
|
|
app.use(Loading);
|
|
app.use(Lazyload);
|
|
app.use(ImagePreview);
|
|
app.use(Tab);
|
|
app.use(Tabs);
|
|
app.use(Divider);
|
|
app.use(NoticeBar);
|
|
app.use(ActionSheet);
|
|
app.use(router).use(ElementPlus).mount('#app')
|
|
|
|
|