1、 element-plus 安装命令: npm install element-plus --save 2、vue-router 安装命令: npm install vue-router --save 安装完成后,需要到main.ts注册: import{createApp}from'vue' importAppfrom'./App.vue' importElementPlusfrom'element-plus' import'element-plus/dist/index.css' importrouterfrom'./ro...
安装element-plus://在当前项目文件夹下 npm npm install element-plus --save 安装element-plus按需自动导入的两款插件://在当前项目文件夹下 npm install -D unplugin-vue-components unplugin-auto-import 在项目里的vite.config.ts配置文件配置这两款插件:配置前:import { defineConfig } from 'vite'impo...
1、安装Element-Plus 1 npm install element-plus --save 2、在main.ts中引入element-plus 1 2 3 4 import ElementPlus from 'element-plus' // element-plus import 'element-plus/dist/index.css' // element-plus createApp(App).use(router).use(ElementPlus).mount('#app') 配置Pinia 1、安装Pini...
在命令行中运行以下命令: npm install -g create-vite 2. 创建新项目 使用create-vite 命令创建一个新项目,可以选择 Vue3 作为默认框架。运行以下命令: create-vite my-vue-app --template vue 3. 安装 Element Plus 进入项目目录,安装 Element Plus: cd my-vue-app npm install element-plus 4. 配置项目 ...
vue3+vite+element-plus(一)- 搭建项目 最近新开发的项目使用 vue3,本着 “好记性不如烂笔头” 的想法,决定将项目搭建的过程及其中遇到的问题记录下来。 一、项目初始化 npm init vite my-vue3-app 选择vue, 按enter; 选择typescript按enter; cd my-vue3-app...
安装element-plus,重新npm install i --force,强制安装,否则会报错 element-plus找不到样式 在main.js中,找到引入element-plus样式 解决也很简单,既然自己已经安装了element-plus依赖,却找不到文件,大概率是路径变了。于是手动翻了下node-modules,发现果然整个theme-chalk文件夹都被挪了位置 ...
1,在项目根目录执行命令:npm i element-ui -S进行安装 2,在main.js中引入element: import Element from 'element-ui' import 'element-ui/lib/theme-chalk/index.css'; Vue.use(Element) 3,在组件中直接使用 修改主题色 1,安装sass: npm install node-sass --save-dev ...
这个指令是可以选择安装 router (路由) pinia (状态管理)等工具依赖 npm init vue@latest # 这个命令,可以选择很多模块,例如router 和 pinia(推荐) npm create vue@latest 第二步 下载element 组件 创建好的新项目,可以先把没用的文件删一删 使用以下指令 引入element plus ...
首先我们进行element-plus安装 代码语言:javascript 复制 yarn add element-plus 之后我们在vite.config.ts中进行配置,这里既然进行自动引入了,顺便把vue的组件也自动引入了,大家应该知道vue3的组合式API(也是本文采用的方式)中无论是ref还是生命周期函数之类的,都需要在使用时进行手动引入,这里我们把vue的组件也还有vue...