摘要: 在main.js导入element-plus的时候不仅要import ElementPlus from 'element-plus'还要导入css文件import 'element-plus/dist/index.css',我就是没有导入css文件导致显示不正确。 导入前: 导入后: 阅读全文
posted @ 2022-07-08 10:53 Texley 阅读(1998) 评论(1) 推荐(0)
摘要: 路由重定向 在创建路由时可以用redirect参数指定默认访问路径 写法1 const routes = [{ path: "/", component: () => import("../components/root.vue"), redirect: to => { return "user1" 阅读全文
posted @ 2022-07-08 08:47 Texley 阅读(42) 评论(0) 推荐(0)