Skip to content
/ vue-template Public template

Vue 单页应用模板,用于个人项目的基座,免去每次初始化项目的繁琐过程,使用的框架/库包括 Vue3、TypeScript,依赖管理工具为 PNPM,构建工具为 Vite。

Notifications You must be signed in to change notification settings

lexmin0412/vue-template

Repository files navigation

Vue3 单页应用模板【WIP】

Vue 单页应用模板,用于个人项目的基座,免去每次初始化项目的繁琐过程,使用的框架/库包括 Vue3、TypeScript、Ant Design Vue,依赖管理工具为 PNPM,构建工具为 Vite。

相关仓库

仓库名 仓库地址 说明
react-template https://github.com/lexmin0412/react-template react 单页应用模板

技术栈

  • Vue V3
  • TypeScript V5
  • Ant Design Vue V4
  • PNPM V7
  • Vite V4

搭建步骤

此模板的搭建步骤如下,记录下来用于后续其他项目的开发。

1. 初始化空间

通过 vite 官方脚手架来初始化应用模板。

npx create-vite

依次输入目录名、选择 Vue、TypeScript,然后 cd 进入目录,通过 code . 打开目录。

2. 配置 npm 源

在根目录创建 .npmrc 文件,然后填入以下内容:

registry=https://registry.npmmirror.com/

3. 安装依赖

使用 pnpm 安装依赖:

pnpm install

4. TypeScript 配置调整

配置文件调整:

  • 删除 tsconfig.node.json, 并去除 tsconfig.json 中对它的引用。—— 没必要
  • 将 compilerOptions.moduleResolution 选项值改为 "Node" —— 解析 node_modules 中的依赖

完成以上调整后的 tsconfig.json 内容:

{
  "compilerOptions": {
    "target": "ES2020",
    "useDefineForClassFields": true,
    "module": "ESNext",
    "lib": ["ES2020", "DOM", "DOM.Iterable"],
    "skipLibCheck": true,

    /* Bundler mode */
    "moduleResolution": "Node",
    "allowImportingTsExtensions": true,
    "resolveJsonModule": true,
    "isolatedModules": true,
    "noEmit": true,
    "jsx": "preserve",

    /* Linting */
    "strict": true,
    "noUnusedLocals": true,
    "noUnusedParameters": true,
    "noFallthroughCasesInSwitch": true
  },
  "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
}

5. 配置IDE

推荐使用 VSCode,安装以下插件:

安装完成后,打开 .vue 文件,底部区域将会出现一个 TypeScript 版本,点击可以切换(选择与 VSCode 使用的 TypeScript 版本统一或与项目依赖的 TypeScript 配置统一)。

6. 初始化 Git 配置

git init
git remote add origin git@github.com:lexmin0412/react-template.git
git add .
git commit -m 'feat: init project'
git push -u origin master

7. 引入 Ant Design Vue

7.1 安装依赖

Ant Design Vue 已跟进 Ant Design 5.x 版本发布了 4.0 正式版,我们可以直接安装:

pnpm add ant-design-vue@4.x

7.2 按需加载

通过 unplugin-vue-components 插件可以实现自动按需加载。

安装依赖:

pnpm add unplugin-vue-components -D

vite.config.ts 中添加如下配置:

import { defineConfig } from 'vite'
import Components from 'unplugin-vue-components/vite';
import { AntDesignVueResolver } from 'unplugin-vue-components/resolvers';

// https://vitejs.dev/config/
export default defineConfig({
  plugins: [
		Components({
			resolvers: [
				AntDesignVueResolver({
					importStyle: false,
				}),
			],
		}),
	],
})

7.3 使用

直接在 .vue 文件中即可使用:

<template>
	<a-button type="primary">Primary Button</a-button>
</template>

About

Vue 单页应用模板,用于个人项目的基座,免去每次初始化项目的繁琐过程,使用的框架/库包括 Vue3、TypeScript,依赖管理工具为 PNPM,构建工具为 Vite。

Topics

Resources

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published