常用vue3脚手架搭建

news/2024/12/22 13:54:31/文章来源:https://www.cnblogs.com/yapi-wwj/p/18622012

我目前看到的脚手架搭建,多多少少都有点问题。我目前创建了很多项目,已经习惯了以下一套流程,下面总结一下:

一、创建vite项目

npm create vite@latest 
npm install
npm run dev

二、安装element plus

npm install element-plus --save
npm install -D unplugin-vue-components unplugin-auto-import

在vite.config.ts中

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'export default defineConfig({plugins: [vue(),AutoImport({resolvers: [ElementPlusResolver()],}),Components({resolvers: [ElementPlusResolver({ importStyle: 'sass' })] // importStyle: "sass" }),],
})

三、配置根目录别名

这里的问题会比较多,特别是使用ts的,别名配置总归会有点问题,只是因为教程里大多都少写了一个依赖包。
在vite.config.ts中配置:

import { fileURLToPath, URL } from 'node:url'export default defineConfig({plugins: [vue(),// element plus 配置],resolve: {alias: {'@': fileURLToPath(new URL('./src', import.meta.url)),},},
})

一般到这都会报错Vue: Cannot find module 'node:url' or its corresponding type declarations.,这是因为这个node:url没有导进来。

npm install --save-dev @types/node

四、配置sass

npm install sass -D

按照我的习惯,是在src下创建一个styles文件夹

--styles|--index.scss  //统一出口,在main.ts中暴露|--global.scss  //全局样式,可以在scss中直接使用$value

对于global.scss,在vite.config.ts配置全局

import {defineConfig} from 'vite'
···
export default defineConfig({plugins: [vue(),//组件配置 ],resolve: {//别名配置 },css: {preprocessorOptions: {scss: {// additionalData: '@import "@/styles/global.scss";' 这行代码可能会导致报错additionalData: '@use "@/styles/global.scss" as *;' //建议使用这行代码}}}
})

在main.ts中挂载

import "./styles/index.scss";

五、配置vue-router

npm i vue-router@4

在src下创建一个router文件夹

--router|--index.ts  //统一出口,在main.ts中暴露|--router.ts  //各个路由

在index.ts中

import { createRouter, createWebHistory } from "vue-router";
import { constantRoute } from "./router";const router = createRouter({history: createWebHistory(import.meta.env.BASE_URL),routes: constantRoute,scrollBehavior() {return {left: 0,top: 0,};},
});export default router;

在router.ts中

export const constantRoute = [{path: "/",name: "layout",component: () => import("@/layout/index.vue"),  //我喜欢把介绍页存入layout并配置为根路径}
];

在main.ts中挂载

import router from "./router";
app.use(router);

六、配置pinia

npm install pinia
npm install pinia-plugin-persistedstate

在src下创建一个stores文件夹

--stores|--index.ts  //统一出口|--modules|--test.ts //可以根据不同功能再细分文件夹

在main.ts中挂载

import { createPinia } from "pinia";
app.use(createPinia());

在index.ts中

import { createPinia } from "pinia"; //引入pinia
import piniaPluginPersistedState from "pinia-plugin-persistedstate"; //引入持久化插件const pinia = createPinia();
pinia.use(piniaPluginPersistedState);export default pinia;
export * from "./modules/test.ts"; 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/856774.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【Rive】Android与Rive交互

1 Android与Rive交互的常用接口 1.1 RiveAnimationView参数 <app.rive.runtime.kotlin.RiveAnimationViewandroid:id="@+id/rive_view"android:layout_width="match_parent"android:layout_height="match_parent"android:adjustViewBounds=&q…

【Rive】混合动画

1 混合动画简介 ​ 【Rive】动画 中介绍了 Rive 中动画的基础概念和一般动画的制作流程,本文将介绍混合动画的基础概念和一般制作流程。Unity 中混合动画介绍详见→ 【Unity3D】动画混合。 ​ 混合动画是指同一时刻多个动画按照一定比例同时执行,这些动画控制的动画参数…

Command-line Environment

Command-line Environment 任务控制 shell会使用UNIX提供的信号机制去执行进程间的通信,进程收到信号的时候,会基于信号改变其执行 停止 停止任务:^c 信号:SIGINT在进行find遍历目录时,使用^c,发出SIGINT到该进程,停止了该任务 课程中提供了一个脚本,忽略了SIGINT信号的…

【嵌入式开发】探讨下PC端的BLE开发

目前在嵌入式设备端,实现了不少ble的功能。比如音频传输,图片传输。一般要方便演示,需要开发个对应的手机app。但是我又是很偷懒的人。想着,python这个工具这么强大,在PC端可以用python几行代码就实现掉吧? 说干就干! 根据同事的推荐,用了python的bleak蓝牙库。 我是在…

Jmeter 修改Sampler result 结果信息

首先说一下,jmeter的Sampler result是什么? Jmeter 的Samplers result 是jmeter在向服务器发送请求后,接收到服务器响应的基本信息的展示,如 sample 的开始请求时间、发送的内容大小、基于协议的响应状态码和响应消息等信息。 什么是基于协议的响应状态码和响应消息。比如h…

Shell Script

Shell Script 赋值操作 foo=bar echo $foo注意: 不要使用空格分开shell 将会把foo当作一个程序 转义 Bash通过使用和""来定义字符串 ""会将字符串中的变量转义 echo "String is $foo"会将字符串中的变量原样输出 echo String is $foo函数 函数内…

聊一聊 C#前台线程 如何阻塞程序退出

一:背景 1. 讲故事 这篇文章起源于我的 C#内功修炼训练营里的一位朋友提的问题:后台线程的内部是如何运转的 ? ,犹记得C# Via CLR这本书中 Jeffery 就聊到了他曾经给别人解决一个程序无法退出的bug,最后发现是有一个 Backgrond=false 的线程导致的。恰巧在我分析的350+dum…

聊一聊 C#后台线程 如何阻塞程序退出

一:背景 1. 讲故事 这篇文章起源于我的 C#内功修炼训练营里的一位朋友提的问题:后台线程的内部是如何运转的 ? ,犹记得C# Via CLR这本书中 Jeffery 就聊到了他曾经给别人解决一个程序无法退出的bug,最后发现是有一个 Backgrond=false 的线程导致的。恰巧在我分析的350+dum…

offset explorer如何安装?附获取方式

前言 大家好,我是小徐啊。我们在Java开发的时候,有时候需要进行大数据的开发,或者需要使用消息队列,这个时候,就需要用到kafka这个组件了。而对于我们平常运维来说,最好有一个可视化的连接kafka的工具。今天小徐就来介绍一款连接Kafka的工具,是offset explorer,介绍下w…

NUMA的取舍与优化设置

NUMA的取舍与优化设置在os层numa关闭时,打开bios层的numa会影响性能,QPS会下降15-30%;在bios层面numa关闭时,无论os层面的numa是否打开,都不会影响性能。 安装numactl: #yum install numactl -y #numastat 等同于 cat /sys/devices/system/node/node0/numa…

2024-2025-1(20241321)《计算机基础与程序设计》第十三周学习总结

这个作业属于哪个课程 <班级的链接>(2024-2025-1-计算机基础与程序设计)这个作业要求在哪里 <作业要求的链接>(2024-2025-1计算机基础与程序设计第十三周作业)这个作业的目标 <深刻学习C语言,反思一周学习,温故知新>作业正文 ... 本博客链接https://www.…

解决 PbootCMS 附件上传报错

根据你提供的信息,PbootCMS 附件上传时报错: 上传失败:UNKNOW: Code: 8192; Desc: stripos(): Non-string needles will be interpreted as strings in the future. Use an explicit chr() call to preserve the current behavior; File: /www/wwwroot/aaa.xxxx.com/core/fu…