|
3 years ago | |
---|---|---|
.idea | 3 years ago | |
docs | 3 years ago | |
mock | 3 years ago | |
public | 3 years ago | |
src | 3 years ago | |
types | 3 years ago | |
.gitignore | 3 years ago | |
.prettierrc | 3 years ago | |
README.md | 3 years ago | |
components.d.ts | 3 years ago | |
index.html | 3 years ago | |
package-lock.json | 3 years ago | |
package.json | 3 years ago | |
pnpm-lock.yaml | 3 years ago | |
tsconfig.json | 3 years ago | |
vite.config.ts | 3 years ago | |
windi.config.ts | 3 years ago |
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
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 enable Volar's .vue
type support plugin by running Volar: Switch TS Plugin on/off
from VSCode command palette.
https://github.com/anncwb/vue-vben-admin/blob/main/src/utils/cache/persistent.ts https://v3.vuejs.org/api/sfc-script-setup.html#defineprops-and-defineemits // Check out https://v3.vuejs.org/api/sfc-script-setup.html#sfc-script-setup https://github.com/iiiiiii1/douban-imdb-api https://www.jianshu.com/p/3f224c33dd97
http://doc.bmob.cn/data/wechat_app_new/#websocket https://github.com/bmob/Bmob-wechatapp-xinyou https://www.bmob.cn https://www.bookstack.cn/read/BmobDocs/mds-other-common_problem-data_javascript.md https://bmob.github.io/hydrogen-js-sdk/#/?id=%E7%99%BB%E9%99%86 https://v3.cn.vuejs.org/api/built-in-components.html#teleport https://v3.cn.vuejs.org/api/global-api.html#defineasynccomponent
https://2x.antdv.com/docs/vue/introduce-cn
https://www.attojs.com/api/#manual
目录结构说明
src
├── api (网络请求模块)
├── App.vue
├── assets (资源模块,包含公共文件)
├── components (共用模块,与业务无关)
├── env.d.ts
├── hook (存放通用hook)
├── main.ts
├── pages (页面)
├── pagesUI (通用页面组件)
├── plugins (其他插件)
├── router (路由管理)
└── store (全局状态管理)
注意事项
- 页面节点必须只有一个根节点,不然会发现动画出现问题