update:更新样式

This commit is contained in:
2021-09-10 16:13:44 +08:00
parent ec259ecaa3
commit 2f169da0d1
4 changed files with 91 additions and 80 deletions

View File

@@ -1,54 +1,57 @@
// The Vue build version to load with the `import` command
// (runtime-only or standalone) has been set in webpack.base.conf with an alias.
import './assets/reset.css';
import 'lib-flexible/flexible';
// import "./assets/reset.css";
import "lib-flexible/flexible";
import '@/elementui'
import ElementUI from 'element-ui'
import 'element-ui/lib/theme-chalk/index.css'
import "@/elementui";
import ElementUI from "element-ui";
import "element-ui/lib/theme-chalk/index.css";
import Vue from 'vue'
import App from './App'
import router from './router'
import { Button, NavBar, Cell, CellGroup } from 'vant';
import Vue from "vue";
import App from "./App";
import router from "./router";
import { Button, NavBar, Cell, CellGroup } from "vant";
Vue.use(Button)
.use(NavBar)
.use(Cell)
.use(CellGroup)
.use(ElementUI);
Vue.use(Button).use(NavBar).use(Cell).use(CellGroup);
import { Image as VanImage } from 'vant';
import { Image as VanImage } from "vant";
Vue.use(VanImage);
import { Col, Row } from 'vant';
import { Col, Row } from "vant";
Vue.use(Col);
Vue.use(Row);
import { Grid, GridItem } from 'vant';
import { Grid, GridItem } from "vant";
Vue.use(Grid);
Vue.use(GridItem);
import { Icon } from 'vant';
import { Icon } from "vant";
Vue.use(Icon);
import { List } from 'vant';
import { List } from "vant";
Vue.use(List);
import { Divider } from 'vant';
import { Divider } from "vant";
Vue.use(Divider);
Vue.config.productionTip = false
import md5 from 'js-md5'
Vue.prototype.$md5 = md5
Vue.config.productionTip = false;
import md5 from "js-md5";
Vue.prototype.$md5 = md5;
/* eslint-disable no-new */
const vm = new Vue({
el: '#app',
el: "#app",
router,
components: { App },
template: '<App/>'
})
export default vm
template: "<App/>"
});
export default vm;