Web前端开发工具和依赖安装

各种安装:

node.js

https://nodejs.org/zh-cn/

安装完node.js 可以使用npm,npm跟随nodejs一起安装

powershell 复制代码
node --version  查看已安装node.js的版本,确认是否安装nodejs
npm -v 查看npm版本

npm install <Module Name> 安装模块
npm install -g <Module Name>    加-g全局安装<>模块

npm init vite@latest xxx(project name)  快速创建前端项目

npm run dev 启动

修改镜像源

修改镜像源为淘宝镜像:输入以下命令并回车

powershell 复制代码
npm config set registry [https://registry.npmmirror.com](https://registry.npmmirror.com)

修改镜像源为腾讯镜像源:输入以下命令并回车

powershell 复制代码
npm config set registry [http://mirrors.cloud.tencent.com/npm/](http://mirrors.cloud.tencent.com/npm/)

修改镜像源为华为镜像源:输入以下命令并回车

powershell 复制代码
npm config set registry [https://mirrors.huaweicloud.com/repository/npm/](https://mirrors.huaweicloud.com/repository/npm/)

pnpm 安装

速度快、节省磁盘空间的软件包管理器

powershell 复制代码
npm install -g pnpm

scss

css预处理语言, 样式

安装:

powershell 复制代码
  npm install sass --save

Element Plus

安装:

powershell 复制代码
  npm install element-plus --save

使用:

ts 复制代码
import ElementPlus from 'element-plus'  导入element-plus包
import 'element-plus/dist/index.css' 导入样式

createApp(App).use(ElementPlus).mount('#app')  使用

路由的配置

作用:URL地址和页面的适配

安装命令

powershell 复制代码
npm install vue-router@next --save

使用步骤:

1安装路由包

2新建页面

示例代码:

ts 复制代码
import {createRouter,createWebHistory} from 'vue-router'
import HomePage from "./views/HomePage.vue"
import LoveFlower from "./views/LoveFlower.vue"  
const router = createRouter({
  history: createWebHistory(),
  routes: [
    { path: '/', component: HomePage },
    { path: '/loveflower', component: LoveFlower },   ],
})
export default router

vuex

Vuex 是一个专为 Vue.js 应用程序开发的状态管理模式 + 库

安装:

powershell 复制代码
npm install vuex --save

使用:

  1. src目录下新建文件夹vuex,新建文件index.ts
  2. main函数里导入
ts 复制代码
import store from './vuex/index
  //挂载vuex
  app.use(store)

ecahrts

安装

powershell 复制代码
npm install echarts --save

教程官网:

https://echarts.apache.org/zh/index.html

axios

axios拦截器

安装

powershell 复制代码
npm install axios --save
相关推荐
Gnevergiveup3 分钟前
2024网鼎杯青龙组Web+Misc部分WP
开发语言·前端·python
你不讲 wood22 分钟前
使用 Axios 上传大文件分片上传
开发语言·前端·javascript·node.js·html·html5
Iqnus_1231 小时前
vue下载安装
前端·vue.js·笔记
网安_秋刀鱼1 小时前
CSRF防范及绕过
前端·安全·web安全·网络安全·csrf·1024程序员节
新知图书1 小时前
Django 5企业级Web应用开发实战-分页
前端·python·django
GDAL1 小时前
HTML入门教程8:HTML格式化
前端·html
清灵xmf2 小时前
UI 组件的二次封装
前端·javascript·vue.js·element-plus
聪明的墨菲特i2 小时前
Vue组件学习 | 二、Vuex组件
前端·vue.js·学习·前端框架·1024程序员节
小何学计算机2 小时前
Nginx配置基于端口的 Web 服务器
服务器·前端·nginx