Vue3组件库的环境怎么配置
时间:2023-05-14 12:38
因为我们是使用 Vite+Ts 开发的是 Vue3 组件库,所以我们需要安装 typescript、vue3,同时项目将采用 Less 进行组件库样式的管理 使用pnpm如果要安装在项目根目录下,则需要加 在根目录执行 因为我们要开发的是一个 Vue3 组件库,肯定需要一个 Vue3 项目来测试我们的组件库,所以这里将自己搭建一个基于 Vite 的 Vue3 项目来对组件进行调试。因此我们在根目录新建一个叫 play 的文件夹然后初始化 我们需要安装 新建 因为 vite 是基于 esmodule 的,所以 新建 新建 在 因为 play 项目需要测试本地的组件库,所以也需要将 play 和我们的组件库关联在一起。修改一下 此时 play 项目便可以安装本地 packages 下的包了 最后执行 但是有一个问题就是 ts 无法识别 此时我们需要新建一个声明文件 此时报错便消失了。 以上就是Vue3组件库的环境怎么配置的详细内容,更多请关注Gxl网其它相关文章!pnpm add vue@next typescript less -D -w
-w
初始化 ts
npx tsc --init
,然后就会自动生成 ts 的配置文件tsconfig.json
,然后我们对其做一个更换{ "compilerOptions": { "baseUrl": ".", "jsx": "preserve", "strict": true, "target": "ES2015", "module": "ESNext", "skipLibCheck": true, "esModuleInterop": true, "moduleResolution": "Node", "lib": ["esnext", "dom"] }}
tsconfig.json
暂时先做这样一个配置,后续可能会有一定的调整搭建一个基于 vite 的 vue3 项目
pnpm init
,后续的组件调试就在这个项目下进行。接下来我们就开始搭建一个 Vue3+Vite 的项目安装插件
vite
和vitejs/plugin-vue
插件,@vitejs/plugin-vue
插件是为了解析后缀为.vue
文件的。在 play 目录下执行pnpm add vite @vitejs/plugin-vue -D
配置 vite.config.ts
vite.config.ts
配置文件import { defineConfig } from "vite";import vue from "@vitejs/plugin-vue";export default defineConfig({ plugins: [vue()],});
新建入口 html 文件
@vitejs/plugin-vue
会默认加载 play 下的 index.html<!DOCTYPE html><html lang="en"> <head> <meta charset="UTF-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>play</title> </head> <body> <div id="app"></div> <script src="main.ts" type="module"></script> </body></html>
script
标签中需要添加type="module"
app.vue
app.vue
文件<template> <div>启动测试</div></template>
入口 main.ts
main.ts
import { createApp } from "vue";import App from "./app.vue";const app = createApp(App);app.mount("#app");
配置脚本启动项目
package.json
配置scripts
脚本{ "name": "play", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "dev": "vite" }, "keywords": [], "author": "", "license": "ISC", "devDependencies": { "@vitejs/plugin-vue": "^4.0.0", "vite": "^4.1.1" }}
pnpm-workspace.yaml
文件packages: - "packages/**" - "play"
pnpm run dev
,便可启动我们的 play 项目*.vue
文件,所以编译器会报红vue-shim.d.ts
,让 ts 认识*.vue
的文件declare module '*.vue' { import type { DefineComponent } from "vue"; const component: DefineComponent<{}, {}, any>}