0.0.0 • Published 1 year ago

@sunqitao/layou-demo v0.0.0

Weekly downloads
-
License
-
Repository
-
Last release
1 year ago

Vue 3 + TypeScript + Vite

This template should help get you started developing with Vue 3 and TypeScript in Vite. The template uses Vue 3 <script setup> SFCs, check out the script setup docs to learn more.

Recommended IDE Setup

Type Support For .vue Imports in TS

TypeScript cannot handle type information for .vue imports by default, so we replace the tsc CLI with vue-tsc for type checking. In editors, we need TypeScript Vue Plugin (Volar) to make the TypeScript language service aware of .vue types.

If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a Take Over Mode that is more performant. You can enable it by the following steps:

  1. Disable the built-in TypeScript Extension
    1. Run Extensions: Show Built-in Extensions from VSCode's command palette
    2. Find TypeScript and JavaScript Language Features, right click and select Disable (Workspace)
  2. Reload the VSCode window by running Developer: Reload Window from the command palette.

安装依赖

pnpm add @types/node -D

pnpm add @types/node vite-plugin-dts -D
{
  "name": "layou-demo",
  "private": false,//应为要发布所以要设置为false
  "version": "0.0.0",
  "type": "module",
  "files": ["dist"], // 发布指定要包含的文件
  "main": "./dist/layou-com.umd.cjs",// comjs规范 request方式引入的文件
  "module": "./dist/layou-com.js", // es6 规范引入
  "types": "./dist/index.d.ts", // ts引入的文件
  “
  "scripts": {
    "dev": "vite",
    "build": "vue-tsc && vite build",
    "preview": "vite preview"
  },
  "dependencies": {
    "vue": "^3.2.45"
  },
  "devDependencies": {
    "@types/node": "^18.15.0",
    "@vitejs/plugin-vue": "^4.0.0",
    "sass": "^1.59.2",
    "typescript": "^4.9.3",
    "vite": "^4.1.0",
    "vite-plugin-dts": "^2.1.0",
    "vue-tsc": "^1.0.24"
  }
}
0.0.0

1 year ago