03 2021 档案

摘要:一、使用vite开发时的配置 配置 vue.config.js import {defineConfig} from 'vite'; import vue from '@vitejs/plugin-vue'; import path from 'path'; export default defin 阅读全文
posted @ 2021-03-24 16:37 智走 阅读(1313) 评论(0) 推荐(0)
摘要:查看该包的所有版本及最新版本 npm info jquery查看npmjs服务器上包的版本信息: 使用npm view jquery versions;这种方式可以查看npm服务器上所有的jquery版本信息; 使用npm view jquery version; 这种方式只能查看jquery的最新 阅读全文
posted @ 2021-03-17 17:43 智走 阅读(880) 评论(0) 推荐(1)
摘要:更改数据库密码: 用户root的密码更改为root):mysql> set password for root@localhost = password(‘root’); 阅读全文
posted @ 2021-03-17 10:54 智走 阅读(40) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/cauchy6317/article/details/81570240 阅读全文
posted @ 2021-03-16 22:22 智走 阅读(30) 评论(0) 推荐(0)
摘要:设置vue.config.js文件 1 module.exports = { 2 css: { 4 loaderOptions: { 5 scss: { 6 prependData: '@import "./src/assets/css/variables.scss";' 7 } 8 } 9 } 1 阅读全文
posted @ 2021-03-10 16:50 智走 阅读(4339) 评论(0) 推荐(0)
摘要:component使用对象形式,使用render函数进行处理 1 { 2 path: '/system', 3 name: 'System', 4 meta: { 5 title: '系统设置', 6 icon: 'el-icon-setting' 7 }, 8 component: { 9 ren 阅读全文
posted @ 2021-03-10 16:17 智走 阅读(2629) 评论(0) 推荐(0)