From 4fc4068252f1a07e0f42c20ad058a32c87f85a28 Mon Sep 17 00:00:00 2001 From: yangfeng <wanwan926_4@163.com> Date: 星期五, 28 七月 2023 16:24:52 +0800 Subject: [PATCH] 手机号增加校验 --- src/main.js | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/src/main.js b/src/main.js index d044990..6b8ee12 100644 --- a/src/main.js +++ b/src/main.js @@ -1,14 +1,18 @@ import Vue from "vue" import App from "./App.vue" import router from "./router" +import store from "./store" import ElementUI from "element-ui" import "element-ui/lib/theme-chalk/index.css" import "@/assets/style/index.scss" +import "@/components" + Vue.use(ElementUI) Vue.config.productionTip = false new Vue({ router, + store, render: (h) => h(App) }).$mount("#app") -- Gitblit v1.8.0