update:更新页面接口

This commit is contained in:
2021-09-22 18:30:12 +08:00
parent 20ebbf3456
commit 3ddd521ec1
9 changed files with 345 additions and 178 deletions

View File

@@ -10,6 +10,7 @@ import "element-ui/lib/theme-chalk/index.css";
import Vue from "vue";
import App from "./App";
import router from "./router";
import store from "./store";
import { Button, NavBar, Cell, CellGroup } from "vant";
Vue.use(Button)
@@ -51,6 +52,7 @@ Vue.prototype.$md5 = md5;
const vm = new Vue({
el: "#app",
router,
store,
components: { App },
template: "<App/>"
});