vue3+ts+uniapp+vite+pinia项目配置

开发环境: node >=18,npm >=8.10.2,vue <= 3.2.31

安装项目

npx degit dcloudio/uni-preset-vue#vite-ts vue3-uniapp

1、引入样式规范

npm add -D eslint eslint-config-airbnb-base eslint-config-prettier eslint-import-resolver-typescript eslint-plugin-import eslint-plugin-prettier eslint-plugin-vue @typescript-eslint/eslint-plugin @typescript-eslint/parser vue-global-api 
  1.  .editorconfig

    # .editorconfig 文件
    root = true[*] # 表示所有文件适用
    charset = utf-8 # 设置文件字符集为 utf-8
    indent_style = space # 缩进风格(tab | space)
    indent_size = 2 # 缩进大小
    end_of_line = lf # 控制换行类型(lf | cr | crlf)
    trim_trailing_whitespace = true # 去除行首的任意空白字符
    insert_final_newline = true # 始终在文件末尾插入一个新行[*.md] # 表示仅 md 文件适用以下规则
    max_line_length = off # 关闭最大行长度限制
    trim_trailing_whitespace = false # 关闭末尾空格修剪
  2.  .prettierrc.cjs
    // @see https://prettier.io/docs/en/options
    module.exports = {singleQuote: true,printWidth: 100,tabWidth: 2,useTabs: false,semi: false,trailingComma: 'all',endOfLine: 'auto',
    }
  3.  .eslintrc.cjs
    // .eslintrc.cjs 文件
    module.exports = {env: {browser: true,es2021: true,node: true,},extends: ['eslint:recommended','plugin:@typescript-eslint/recommended','plugin:vue/vue3-essential',// eslint-plugin-import 插件, @see https://www.npmjs.com/package/eslint-plugin-import'plugin:import/recommended',// eslint-config-airbnb-base 插件, tips: 本插件也可以替换成 eslint-config-standard'airbnb-base',// 1. 接入 prettier 的规则'prettier','plugin:prettier/recommended','vue-global-api',],overrides: [{env: {node: true,},files: ['.eslintrc.{js,cjs}'],parserOptions: {sourceType: 'script',},},],parserOptions: {ecmaVersion: 'latest',parser: '@typescript-eslint/parser',sourceType: 'module',},plugins: ['@typescript-eslint','vue',// 2. 加入 prettier 的 eslint 插件'prettier',// eslint-import-resolver-typescript 插件,@see https://www.npmjs.com/package/eslint-import-resolver-typescript'import',],rules: {'vue/multi-word-component-names': 'off',// 3. 注意要加上这一句,开启 prettier 自动修复的功能'prettier/prettier': 'error',// turn on errors for missing imports'import/no-unresolved': 'off',// 对后缀的检测,否则 import 一个ts文件也会报错,需要手动添加'.ts', 增加了下面的配置后就不用了'import/extensions': ['error','ignorePackages',{ js: 'never', jsx: 'never', ts: 'never', tsx: 'never' },],// 只允许1个默认导出,关闭,否则不能随意export xxx'import/prefer-default-export': ['off'],'no-console': ['off'],// 'no-unused-vars': ['off'],// '@typescript-eslint/no-unused-vars': ['off'],// 解决vite.config.ts报错问题'import/no-extraneous-dependencies': 'off','no-plusplus': 'off','no-shadow': 'off',},// eslint-import-resolver-typescript 插件,@see https://www.npmjs.com/package/eslint-import-resolver-typescriptsettings: {'import/parsers': {'@typescript-eslint/parser': ['.ts', '.tsx'],},'import/resolver': {typescript: {},},},
    }
  4.  .stylelintrc.cjs
    npm add -D stylelint stylelint-config-html stylelint-config-recess-order stylelint-config-recommended-vue stylelint-config-standard stylelint-config-standard-scss postcss postcss-html postcss-scss sass
    module.exports = {root: true,extends: ['stylelint-config-standard','stylelint-config-standard-scss', // tips: 本插件也可以替换成 stylelint-config-recommended-scss'stylelint-config-recommended-vue/scss','stylelint-config-html/vue','stylelint-config-recess-order',],overrides: [// 扫描 .vue/html 文件中的<style>标签内的样式{files: ['**/*.{vue,html}'],customSyntax: 'postcss-html',},{files: ['**/*.{css,scss}'],customSyntax: 'postcss-scss',},],// 自定义规则rules: {// 允许 global 、export 、v-deep等伪类'selector-pseudo-class-no-unknown': [true,{ignorePseudoClasses: ['global', 'export', 'v-deep', 'deep'],},],'unit-no-unknown': [true,{ignoreUnits: ['rpx'],},],},
    }

2、引入 husky + lint-staged + commitlint

  1. 先安装git   在终端输入命令  git init        
  2. npm i -D husky lint-staged commitlint @commitlint/cli @commitlint/config-conventional
  3. npx husky install
  4. 在 package.json的scripts里面增加 "prepare": "husky install"
  5. package.json  
    "lint-staged": {"**/*.{html,vue,ts,cjs,json,md}": ["prettier --write"],"**/*.{vue,js,ts,jsx,tsx}": ["eslint --fix"],"**/*.{vue,css,scss,html}": ["stylelint --fix"]
    },
    // commitlint.config.cjs 文件
    module.exports = {extends: ['@commitlint/config-conventional'],
    }
    npx husky add .husky/pre-commit "npx --no-install -- lint-staged"
    npx husky add .husky/commit-msg "npx --no-install commitlint --edit $1"

 3、vite.config.ts 优化 

  1. vite.config.ts
  2. import path from 'node:path'
    import { defineConfig, loadEnv } from 'vite'
    import uni from '@dcloudio/vite-plugin-uni'
    import dayjs from 'dayjs'
    import vue from '@vitejs/plugin-vue'
    import svgLoader from 'vite-svg-loader'
    import { visualizer } from 'rollup-plugin-visualizer'
    import ViteRestart from 'vite-plugin-restart'
    import Components from 'unplugin-vue-components/vite'
    // ElementPlusResolver,
    // AntDesignVueResolver,
    // VantResolver,
    // HeadlessUiResolver,
    // ElementUiResolver
    import {} from 'unplugin-vue-components/resolvers'
    import AutoImport from 'unplugin-auto-import/vite'
    import { createSvgIconsPlugin } from 'vite-plugin-svg-icons'
    import viteCompression from 'vite-plugin-compression'
    import viteImagemin from 'vite-plugin-imagemin'
    import vueSetupExtend from 'vite-plugin-vue-setup-extend'
    import UnoCSS from 'unocss/vite'
    import autoprefixer from 'autoprefixer'const htmlPlugin = () => {return {name: 'html-transform',transformIndexHtml(html) {return html.replace('%BUILD_DATE%', dayjs().format('YYYY-MM-DD HH:mm:ss'))},}
    }// https://vitejs.dev/config/
    export default ({ mode }) => {// mode: 区分生产环境还是开发环境// process.cwd(): 获取当前文件的目录跟地址// loadEnv(): 返回当前环境env文件中额外定义的变量const env = loadEnv(mode, path.resolve(process.cwd(), 'env'))console.log(env)return defineConfig({plugins: [uni(),UnoCSS(),htmlPlugin(),svgLoader(),// 打包分析插件visualizer(),ViteRestart({// 通过这个插件,在修改vite.config.js文件则不需要重新运行也生效配置restart: ['vite.config.js'],}),vueSetupExtend(),// 原先引用组件的时候需要在目标文件里面import相关组件,现在就可以直接使用无需在目标文件import了Components({dirs: ['src/components'], // 目标文件夹extensions: ['vue'], // 文件类型dts: 'src/components.d.ts', // 输出文件,里面都是一些import的组件键值对// ui库解析器,也可以自定义,需要安装相关UI库resolvers: [// VantResolver(),// ElementPlusResolver(),// AntDesignVueResolver(),// HeadlessUiResolver(),// ElementUiResolver()],}),AutoImport({imports: ['vue'],dts: 'src/auto-import.d.ts',}),createSvgIconsPlugin({// 指定要缓存的文件夹iconDirs: [path.resolve(process.cwd(), 'src/assets/svg')],// 指定symbolId格式symbolId: 'icon-[dir]-[name]',}),viteCompression(), // 会多出一些.gz文件,如xxx.js.gz,这里默认是不会删除xxx.js文件的,如果想删除也可以增加配置// 这个图片压缩插件比较耗时,希望仅在生产环境使用viteImagemin({gifsicle: {// gif图片压缩optimizationLevel: 3, // 选择1到3之间的优化级别interlaced: false, // 隔行扫描gif进行渐进式渲染// colors: 2 // 将每个输出GIF中不同颜色的数量减少到num或更少。数字必须介于2和256之间。},optipng: {// pngoptimizationLevel: 7, // 选择0到7之间的优化级别},mozjpeg: {// jpegquality: 20, // 压缩质量,范围从0(最差)到100(最佳)。},pngquant: {// pngquality: [0.8, 0.9], // Min和max是介于0(最差)到1(最佳)之间的数字,类似于JPEG。达到或超过最高质量所需的最少量的颜色。如果转换导致质量低于最低质量,图像将不会被保存。speed: 4, // 压缩速度,1(强力)到11(最快)},svgo: {// svg压缩plugins: [{name: 'removeViewBox',},{name: 'removeEmptyAttrs',active: false,},],},}),],css: {postcss: {plugins: [autoprefixer({// 指定目标浏览器overrideBrowserslist: ['> 1%', 'last 2 versions'],}),],},},resolve: {alias: {'@': path.join(process.cwd(), './src'),},},server: {host: '0.0.0.0',hmr: true,port: 7001,// 自定义代理规则proxy: {// 选项写法'/api': {target: 'http://localhost:6666',changeOrigin: true,rewrite: (path) => path.replace(/^\/api/, ''),},},},})
    }
    npm i -D vite-svg-loader rollup-plugin-visualizer vite-plugin-restart unplugin-vue-components unplugin-auto-import vite-plugin-svg-icons vite-plugin-compression vite-plugin-vue-setup-extend unocss autoprefixer

    vite-plugin-imagemin目前无法安装

  3. uno.config.ts

    // uno.config.ts
    import {defineConfig,presetAttributify,presetUno,presetIcons,transformerDirectives,transformerVariantGroup,
    } from 'unocss'export default defineConfig({presets: [presetUno(),// 支持css class属性化,eg: `<button bg="blue-400 hover:blue-500 dark:blue-500 dark:hover:blue-600" text="sm white">attributify Button</button>`presetAttributify(),// 支持图标,需要搭配图标库,eg: @iconify-json/carbon, 使用 `<button class="i-carbon-sun dark:i-carbon-moon" />`presetIcons({scale: 1.2,warn: true,extraProperties: {display: 'inline-block','vertical-align': 'middle',},}),],transformers: [transformerDirectives(),// 支持css class组合,eg: `<div class="hover:(bg-gray-400 font-medium) font-(light mono)">测试 unocss</div>`transformerVariantGroup(),],
    })
  4. main.ts

    import 'virtual:svg-icons-register'
    import 'virtual:uno.css'
  5. tsconfig.json

    {"compilerOptions": {"sourceMap": true,"baseUrl": ".","paths": {"@/*": ["./src/*"]},"lib": ["esnext", "dom"],"types": ["@dcloudio/types", "@types/wechat-miniprogram", "@uni-helper/uni-app-types"]},"vueCompilerOptions": {"nativeTags": ["block", "template", "component", "slot"]},"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],"references": [{ "path": "./tsconfig.node.json" }]
    }
  6. .eslintrc.cjs

    globals: {uni: true,
    },
    npm i -D @types/wechat-miniprogram @uni-helper/uni-app-types
    npm i -S pinia pinia-plugin-persistedstate
    // src/store/index.ts
    import { createPinia } from 'pinia'
    import { createPersistedState } from 'pinia-plugin-persistedstate' // 数据持久化const store = createPinia()
    store.use(createPersistedState({storage: {getItem: uni.getStorageSync,setItem: uni.setStorageSync,},}),
    )
    export default store
    
    // src.main.ts
    import { createSSRApp } from 'vue'
    import App from './App.vue'
    import store from './store'
    import 'virtual:svg-icons-register'
    import 'virtual:uno.css'export function createApp() {const app = createSSRApp(App)app.use(store)return {app,}
    }

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

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

相关文章

陶建辉当选 GDOS 全球数据库及开源峰会荣誉顾问

近日&#xff0c;第二十三届 GOPS 全球运维大会暨 XOps 技术创新峰会在北京正式召开。本次会议重点议题方向包括开源数据库落地思考、金融数据库自主可控、云原生时代下数据库、数据库智能运维、数据库安全与隐私、开源数据库与治理。大会深入探讨这些方向&#xff0c;促进了数…

宇宙第一大厂亚马逊云科技AWS人工智能/机器学习证书即将上线,一篇文章教你轻松拿下

据麦肯锡《在华企业如何填补AI人才缺口》研究表明&#xff0c;到2030年人工智能为中国带来的潜在价值有望超过1万亿美元&#xff0c;而随着各大企业进入人工智能化&#xff0c;对该领域的人才需求将从目前的100万增长到2030年的600万。然而到保守估计&#xff0c;到2030可以满足…

DevOps:开发与运维的无缝融合

目录 前言1. DevOps的起源与概念1.1 DevOps的起源1.2 DevOps的定义 2. DevOps的核心实践2.1 持续集成2.2 持续交付2.3 自动化 3. DevOps工具链3.1 版本控制系统3.2 持续集成工具3.3 配置管理工具3.4 容器化与编排工具3.5 监控和日志工具 4. DevOps的实际应用4.1 案例分析&#…

C语言版数据结构详解与实现

C语言版数据结构详解与实现 大家好&#xff0c;我是微赚淘客系统3.0的小编&#xff0c;也是冬天不穿秋裤&#xff0c;天冷也要风度的程序猿&#xff01;今天我们来深入探讨C语言中数据结构的详细实现及其应用。 数据结构概述 数据结构是计算机存储、组织数据的方式&#xff…

C语言实战 | 用户管理系统

近期推出的青少年防沉迷系统&#xff0c;采用统一运行模式和功能标准。在“青少年模式”下&#xff0c;未成年人的上网时段、时长、功能和浏览内容等方面都有明确的规范。防沉迷系统为青少年打开可控的网络空间。 01、综合案例 防沉迷系统的基础是需要一个用户管理系统管理用户…

Swagger的原理及应用详解(三)

本系列文章简介&#xff1a; 在当今快速发展的软件开发领域&#xff0c;特别是随着微服务架构和前后端分离开发模式的普及&#xff0c;API&#xff08;Application Programming Interface&#xff0c;应用程序编程接口&#xff09;的设计与管理变得愈发重要。一个清晰、准确且易…

C# 计算椭圆上任意一点坐标

已知圆心坐标 &#xff08;x0&#xff0c;y0&#xff09;&#xff0c;横轴 A&#xff08;长半轴&#xff09;&#xff0c;竖轴 B&#xff08;短半轴&#xff09;&#xff0c;角度 a&#xff0c;则圆边上点&#xff08;x&#xff0c;y&#xff09;的坐标为&#xff1a; 方法一 …

docker push 推送镜像到阿里云仓库

1.登陆阿里云 镜像服务&#xff0c;跟着指引操作就行 创建个人实例&#xff0c;创建命名空间、镜像仓库&#xff0c;绑定代码源头 2.将镜像推送到Registry $ docker login --username*** registry.cn-beijing.aliyuncs.com $ docker tag [ImageId] registry.cn-beijing.aliy…

Linux中grep命令的高级用法与实例

Linux中grep命令的高级用法与实例 大家好&#xff0c;我是微赚淘客系统3.0的小编&#xff0c;也是冬天不穿秋裤&#xff0c;天冷也要风度的程序猿&#xff01;今天我们来探讨Linux中grep命令的高级用法及其实例。 什么是grep命令&#xff1f; grep命令是Linux和Unix系统中的…

Vue入门-如何创建一个Vue实例

创建一个一个Vue实例总共分为四步&#xff1a; 1.创建一个容器 2.引包&#xff1a;地址栏搜索v2.cn.vuejs.org这是vue2的官网地址&#xff0c;把2去掉就是vue3的官网地址&#xff0c;我们的包分为开发版本和生产版本&#xff0c;开发版本包含完整的警告和调试模式生产版本删除…

太阳辐射系统日光全光谱模拟太阳光模拟器

太阳光模拟器是一种用于评估太阳能电池性能的重要设备。它能够模拟太阳光的特性&#xff0c;通过测试电池的短路电流、开路电压、填充因子和光电转化效率等关键指标&#xff0c;来评估电池的性能优劣。 设备型号&#xff1a;KYF-GC004品牌制造商&#xff1a;科迎法电气太阳光模…

UE5基本操作(二)

文章目录 前言相机的移动速度修改默认地图使用初学者内容包文件夹结构 总结 前言 在我们的上一篇文章中&#xff0c;我们已经介绍了一些Unreal Engine 5&#xff08;UE5&#xff09;的基本操作。UE5是一款强大的游戏开发引擎&#xff0c;它提供了许多工具和功能&#xff0c;使…

蓝牙压力测试和稳定性测试工具(nRF Connect)

蓝牙压力测试和稳定性测试工具&#xff08;nRF Connect&#xff09; 文章目录 1、如何使用nRF Connect事件记录功能2、如何使用nRF Connect录制操作2.1、点击右下角的开始录制2.2、输入想要测试的指令2.3、模拟持续数据访问2.4、开始压力测试 1、如何使用nRF Connect事件记录功…

HNU_ACM:10415分硬币(动态规划)

分硬币 Time Limit: 1000ms, Special Time Limit:2500ms, Memory Limit:32768KB Total submit users: 266, Accepted users: 172 Problem 10415 : No special judgement Problem description 一个背包里面最多有100枚硬币&#xff0c;要将这些硬币分给两个人&#xff0c;使…

【python】OpenCV—QR Code

文章目录 1 QR Code2 准备工作3 生成 QR 码4 读取 QR 码5 与 Zbar 比较 1 QR Code QR Code&#xff08;Quick Response Code&#xff09;是一种二维条码&#xff0c;由日本Denso-Wave公司于1994年发明。QR Code的主要特点是存储信息量大、编码范围广、容错能力强、识读速度快&…

C++编程逻辑讲解step by step:字符串的查找和替换

题目 word中有查找和替换功能&#xff0c;编程实现在一个字符串中进行查找和替换的功能。 分析 题目不允许使用另外数组&#xff0c;要求在原数组上进行替换&#xff1b;需要不断地移动字符串&#xff0c;或者增长或者缩短&#xff0c;初始数组必须足够大。 代码 #include &l…

基于PI控制的三相整流器控制系统的simulink建模与仿真,包含超级电容充电和电机

目录 1.课题概述 2.系统仿真结果 3.核心程序与模型 4.系统原理简介 5.完整工程文件 1.课题概述 基于PI控制的三相整流器控制系统的simulink建模与仿真,用MATLAB自带的PMSM电机设为发电机&#xff0c;输入为转速&#xff0c;后面接一个可以调节电流的三相整流器&#xff0c…

three.js地理坐标系有哪些,和屏幕坐标系的转换。

坐标系很好理解&#xff0c;就是点线面体的位置&#xff0c;一个点是一个坐标&#xff0c;一条线段2个坐标&#xff0c;一个矩形四个坐标&#xff0c;一个立方体8个坐标&#xff0c;three.js面对的是三维空间&#xff0c;屏幕则是二维的&#xff0c;这就面临着转换问题&#xf…

数字化精益生产系统--SRM供应商关系管理

SRM供应商关系管理&#xff0c;全称为Supplier Relationship Management&#xff08;供应商关系管理&#xff09;系统&#xff0c;是一种专门用于管理采购供应链和供应商关系的软件系统。该系统通过集成各个环节的采购活动&#xff0c;帮助企业实现采购流程的自动化、标准化和优…

GY-30光照传感器软件I2C方式驱动代码,基于STM32Cube

GY-30光照传感器的具体资料可以去淘宝搜索然后问卖家要&#xff0c;网上也有&#xff0c;所以这里我就不多嘴了。 VCC连接3到5伏电压&#xff0c;根据文件开头的描述在STM32CubeMX中配置好外设。 STM32Cube开发方式就是4个字“简单直接”&#xff0c;直接上代码。 gy30.h #…