Vite创建Vue3工程并引入ElementPlus(图文详情)

embedded/2024/12/29 6:45:34/

Vite创建Vue3工程并引入ElementPlus(图文详细)

1 Vite创建Vue3工程

请确保本机已经正常安装了node18+以上版本,例如本项目使用18.19.0版本

安装多版本node请参考:使用NVM安装管理node版本

image-20241220180859005

使用vite创建vue3工,参考vite官网:https://vitejs.cn/vite3-cn/guide/#scaffolding-your-first-vite-project

在需要创建VUE3项目工程的目录下使用cmd打开命令窗

image-20241220174716934

输入vite创建vue工程命令,勾选vue和js

npm create vite@latest jialiangkj-pet-cms-vue3 --template vue

image-20241220174438741

使用vscode打开创建的项目工程

image-20241220174538233

进入package.json修改vue和vite相关版本号(此处是我常用的项目版本依赖,根据自己项目需要进行修改目前常用的vue3版本为3.2和3.4)
注意:vite3.2版本建议使用3.2.11
image-20241220180326001

新建一个终端,安装相关依赖包

image-20241220180500606

npm install安装依赖包

image-20241220180539134

npm run dev启动运行项目

image-20241220180609607

查看网页是否正常打开

image-20241220180735875

2 ElementPlus引入

官网安装指南:https://element-plus.org/zh-CN/guide/installation.html

打开终端使用npm进行安装

npm install element-plus --save

1.完整引入

点击快速开始,复制示例代码进行引入

image-20241220190528052

找到项目的main.js(TS下对应main.ts),添加代码进行引入挂载

import { createApp } from 'vue'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import App from './App.vue'const app = createApp(App)app.use(ElementPlus)
app.mount('#app')

2.按需导入(推荐)

查看官网按需导入的示例,在vite下进入按需导入,只有当使用对应组件时才进行自动导入

image-20241222162743936

安装自动导入包

npm install -D unplugin-vue-components unplugin-auto-import

配置vite.config.js文件

import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import AutoImport from "unplugin-auto-import/vite";
import Components from "unplugin-vue-components/vite";
import { ElementPlusResolver } from "unplugin-vue-components/resolvers";// https://vite.dev/config/
export default defineConfig({plugins: [vue(),AutoImport({resolvers: [ElementPlusResolver()]}),Components({resolvers: [ElementPlusResolver()]})]
});

重写main.js文件

import { createApp } from "vue";
import "./style.css";
import App from "./App.vue";const app = createApp(App);app.mount("#app");

3.ElementPlus测试

引入完毕后删除自带的HelloWorld示例组件引入完毕后删除自带的HelloWorld示例组件

image-20241220183009637

删除App.vue多余的实例代码,删除后如下

image-20241220190707751

打开ElementPlus官网,任意复制一段组件代码,例如按钮组件

image-20241220192157276

复制按钮测试代码进入App.vue中进行测试

  <div class="mb-4"><el-button>Default</el-button><el-button type="primary">Primary</el-button><el-button type="success">Success</el-button><el-button type="info">Info</el-button><el-button type="warning">Warning</el-button><el-button type="danger">Danger</el-button></div>

image-20241220192323898

npm run dev重新启动项目查看效果,此时ElementPlus已经正常引入

image-20241220192412810


http://www.ppmy.cn/embedded/148805.html

相关文章

【C++ 基础】从C到C++有哪些变化

C到C C相比C语言来说&#xff0c;多了两个核心&#xff0c;五个内容&#xff1a;1、面向对象的思维&#xff1b;2、模板&#xff08;泛型编型&#xff09;1.bool 2.引用 3.内联 4.重载 5.缺省参数变量 数据类型 bool 布尔 占1个字节 取值&#xff1a;true false bool isMax(i…

下载运行Vue开源项目vue-pure-admin

git地址&#xff1a;GitHub - pure-admin/vue-pure-admin: 全面ESMVue3ViteElement-PlusTypeScript编写的一款后台管理系统&#xff08;兼容移动端&#xff09; 安装pnpm npm install -g pnpm # 国内 淘宝 镜像源 pnpm config set registry https://registry.npmmirror.com/…

CESS 出席华盛顿区块链政策峰会:参与国家安全与数据隐私保护专题讨论

12 月 16 日-17 日&#xff0c;由美国区块链协会&#xff08;Blockchain Association&#xff0c;简称 BA&#xff09;主办的 2024 区块链政策峰会在华盛顿特区盛大召开。 本次峰会吸引了众多区块链行业领导者、政策制定者和监管机构参与&#xff0c;围绕区块链政策、监管框架及…

记录C++学习 16

运算符及其重载 运算符 运算符实际就是函数 C中的运算符有 - * / % ^ & | ~ ! < > - * / % ^ & | << >> >> << ! < > <> && || -- , ->* -> ( ) [ ] 运算符的重载 重载本质上是给运算符重新赋予…

预览和下载 (pc和微信小程序)

1.微信小程序 预览pdf 或者 图片等 //utils.js 文件//通过接口返回文件链接 打开文档 export default function previewFile({ downLinkUrl, tempFilePath }) {let url "https://" downLinkUrl.replace("http://", "").replace("https:…

关于小程序内嵌h5打开新的小程序

关于小程序内嵌h5打开新的小程序 三种方式 https://juejin.cn/post/7055551463489011749 只依赖于h5本身的就是 https://huaweicloud.csdn.net/64f97ebb6b896f66024ca16c.html https://juejin.cn/post/7055551463489011749 navigateToMiniProgram 故小程序webview里的h5无法…

[Unity Shader]【图形渲染】 数学基础10 - 旋转矩阵

在计算机图形学和着色器开发中,旋转矩阵是处理物体旋转操作的核心工具之一。旋转操作是三维变换中相对复杂的一部分,主要通过线性代数中的矩阵运算实现。本篇文章将系统介绍三种围绕坐标轴的旋转矩阵的定义和性质。 1. 什么是旋转矩阵? 旋转矩阵是用于将点绕某个轴旋转一定…

云手机与Temu矩阵:跨境电商运营新引擎

云手机与 Temu 矩阵结合的基础 云手机技术原理 云手机基于先进的 ARM 虚拟化技术&#xff0c;在服务器端运行 APP。通过在服务器上利用容器虚拟化软件技术&#xff0c;能够虚拟出多个独立的手机操作系统实例&#xff0c;每个实例等同于一部单独的手机&#xff0c;可独立运行各…