黄琪勇 2c84b9f660 Merge branch 'hqyDev' of http://git.dayaedu.com/lex/classroom-instruments into jenkins | 5 dni temu | |
---|---|---|
.husky | 1 rok temu | |
dev-dist | 5 dni temu | |
dist | 1 tydzień temu | |
public | 5 dni temu | |
src | 5 dni temu | |
templates | 1 rok temu | |
.browserslistrc | 1 rok temu | |
.editorconfig | 7 miesięcy temu | |
.eslintignore | 1 rok temu | |
.eslintrc.js | 1 rok temu | |
.gitignore | 1 rok temu | |
.prettierrc.js | 1 rok temu | |
LICENSE | 1 rok temu | |
README.md | 1 rok temu | |
babel.config.js | 1 rok temu | |
components.d.ts | 7 miesięcy temu | |
index.html | 1 tydzień temu | |
package-lock.json | 7 miesięcy temu | |
package.json | 7 miesięcy temu | |
plopfile.js | 1 rok temu | |
pnpm-lock.yaml | 7 miesięcy temu | |
postcss.config.js | 1 rok temu | |
responsivevoice.js | 4 miesięcy temu | |
tsconfig.json | 1 rok temu | |
tsconfig.node.json | 1 rok temu | |
vite.config.ts | 3 miesięcy temu |
This template should help get you started developing mobile applications with Vue3 and Typescript and Vant in Vite.
npm install
npm start
npm build
npm lint
npm generate
you can use tools such as postcss--px-to-viewport to transform px
unit to viewport units (vw, vh, vmin, vmax).
.vue
Imports in TSSince TypeScript cannot handle type information for .vue
imports, they are shimmed to be a generic Vue component type by default. In most cases this is fine if you don't really care about component prop types outside of templates. However, if you wish to get actual prop types in .vue
imports (for example to get props validation when using manual h(...)
calls), you can enable Volar's .vue
type support plugin by running Volar: Switch TS Plugin on/off
from VSCode command palette.