AIoT前端公共UI

liuyang b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años
.vscode b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años
docs b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años
examples b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años
lib b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años
packages b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años
.eslintignore.js b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años
.eslintrc b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años
.gitignore b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años
.gitignore copy b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años
.prettierrc b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años
INFO.md b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años
README.md b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años
auto-imports.d.ts b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años
components.d.ts b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años
index.html b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años
package.json b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años
pnpm-lock.yaml b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años
tsconfig.json b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años
tsconfig.node.json b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años
vite.config.ts b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años
开发规范.md b53d9d73ad create: 创建common-ui工程 %!s(int64=2) %!d(string=hace) años

README.md

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.
common-module
├─ .eslintignore.js
├─ .eslintrc
├─ .gitignore
├─ .gitignore copy
├─ .prettierrc
├─ INFO.md
├─ README.md
├─ auto-imports.d.ts
├─ components.d.ts
├─ index.html
├─ package-lock.json
├─ package.json
├─ public
│  └─ vite.svg
├─ src
│  ├─ App.vue
│  ├─ assets
│  │  └─ css
│  │     ├─ common.scss
│  │     ├─ element.scss
│  │     ├─ mixins
│  │     │  ├─ config.scss
│  │     │  └─ function.scss
│  │     ├─ reset.scss
│  │     └─ variable.scss
│  ├─ components
│  │  ├─ bread-crumb
│  │  │  └─ Bread.vue
│  │  ├─ card
│  │  │  ├─ Card.vue
│  │  │  └─ CardGroup.vue
│  │  ├─ container
│  │  │  └─ CommonContainer.vue
│  │  ├─ dialog
│  │  │  └─ Dialog.vue
│  │  ├─ drawer
│  │  │  └─ Drawer.vue
│  │  ├─ form
│  │  │  ├─ Form.vue
│  │  │  └─ Select.vue
│  │  ├─ index.ts
│  │  ├─ info
│  │  │  └─ Info.vue
│  │  ├─ layer
│  │  │  ├─ CommonLayer.vue
│  │  │  ├─ Header.vue
│  │  │  ├─ Menu.vue
│  │  │  └─ MenuItem.vue
│  │  ├─ page-panel
│  │  │  └─ PagePanel.vue
│  │  ├─ panel
│  │  │  └─ Panel.vue
│  │  ├─ search
│  │  │  └─ Search.vue
│  │  ├─ table
│  │  │  └─ Table.vue
│  │  └─ tree
│  │     └─ Tree.vue
│  ├─ main.ts
│  ├─ router.ts
│  ├─ views
│  │  ├─ GridDemo.vue
│  │  └─ TableDemo.vue
│  └─ vite-env.d.ts
├─ tsconfig.json
├─ tsconfig.node.json
└─ vite.config.ts

common-module
├─ .eslintignore.js
├─ .eslintrc
├─ .gitignore
├─ .gitignore copy
├─ .prettierrc
├─ INFO.md
├─ README.md
├─ auto-imports.d.ts
├─ components.d.ts
├─ index.html
├─ package-lock.json
├─ package.json
├─ public
│  └─ vite.svg
├─ src
│  ├─ App.vue
│  ├─ assets
│  │  └─ css
│  │     ├─ common.scss
│  │     ├─ element.scss
│  │     ├─ mixins
│  │     │  ├─ config.scss
│  │     │  └─ function.scss
│  │     ├─ reset.scss
│  │     └─ variable.scss
│  ├─ components
│  │  ├─ bread-crumb
│  │  │  └─ Bread.vue
│  │  ├─ card
│  │  │  ├─ Card.vue
│  │  │  └─ CardGroup.vue
│  │  ├─ container
│  │  │  └─ CommonContainer.vue
│  │  ├─ dialog
│  │  │  └─ Dialog.vue
│  │  ├─ drawer
│  │  │  └─ Drawer.vue
│  │  ├─ form
│  │  │  ├─ Form.vue
│  │  │  └─ Select.vue
│  │  ├─ index.ts
│  │  ├─ info
│  │  │  └─ Info.vue
│  │  ├─ layer
│  │  │  ├─ CommonLayer.vue
│  │  │  ├─ Header.vue
│  │  │  ├─ Menu.vue
│  │  │  └─ MenuItem.vue
│  │  ├─ page-panel
│  │  │  └─ PagePanel.vue
│  │  ├─ panel
│  │  │  └─ Panel.vue
│  │  ├─ search
│  │  │  └─ Search.vue
│  │  ├─ table
│  │  │  └─ Table.vue
│  │  └─ tree
│  │     └─ Tree.vue
│  ├─ main.ts
│  ├─ router.ts
│  ├─ views
│  │  ├─ GridDemo.vue
│  │  └─ TableDemo.vue
│  └─ vite-env.d.ts
├─ tsconfig.json
├─ tsconfig.node.json
└─ vite.config.ts