use npx degit pohunchn/vite-ts-quick#main my-project or git clone ... pull code.
After pulling the code, execute npm install in the root directory of the project. After success, execute npm run dev to start the project (nodejs + npm needs to be installed)
- vite-react-quick - For React
- NetBase(Fetch)
- Cookie
- Storage
- vue-router
- pinia
- vue-i18n
- element-plus
- This framework adopts Fetch as a network requester, it is not recommended to introduce Axios again
- Please do not modify all the files under the
libfolder in the business project - It is recommended that the custom root library be inherited from
lib/ts/Base - gitee is only for domestic users to pull code,from github to synchronize,please visit github for PR
- Welcome to Issues and PR
This template should help get you started developing with Vue 3 and Typescript in Vite.
Since 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 use the following: