create-young-proj 1.0.0 → 1.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (337) hide show
  1. package/.editorconfig +14 -0
  2. package/.vscode/settings.json +39 -0
  3. package/CHANGELOG.md +260 -0
  4. package/README.md +7 -3
  5. package/build.config.ts +22 -0
  6. package/eslint.config.js +35 -0
  7. package/package.json +1 -7
  8. package/src/index.ts +366 -0
  9. package/template-admin-server/.editorconfig +11 -0
  10. package/template-admin-server/.nvmrc +1 -0
  11. package/template-admin-server/.vscode/extensions.json +6 -0
  12. package/template-admin-server/.vscode/settings.json +4 -0
  13. package/template-admin-server/_gitignore +15 -0
  14. package/template-admin-server/_nvmrc +1 -0
  15. package/template-admin-server/boot.mjs +11 -0
  16. package/template-admin-server/package.json +60 -0
  17. package/template-admin-server/rome.json +22 -0
  18. package/template-admin-server/src/config/config.default.ts +56 -0
  19. package/template-admin-server/src/configuration.ts +47 -0
  20. package/template-admin-server/src/controller/admin.controller.ts +397 -0
  21. package/template-admin-server/src/controller/api.controller.ts +98 -0
  22. package/template-admin-server/src/controller/base.controller.ts +70 -0
  23. package/template-admin-server/src/controller/dto/api.ts +47 -0
  24. package/template-admin-server/src/controller/dto/index.ts +36 -0
  25. package/template-admin-server/src/controller/dto/menu.ts +41 -0
  26. package/template-admin-server/src/controller/dto/role.ts +41 -0
  27. package/template-admin-server/src/controller/dto/user.ts +52 -0
  28. package/template-admin-server/src/controller/menu.controller.ts +138 -0
  29. package/template-admin-server/src/controller/role.controller.ts +116 -0
  30. package/template-admin-server/src/controller/user.controller.ts +108 -0
  31. package/template-admin-server/src/entities/Api.ts +29 -0
  32. package/template-admin-server/src/entities/BaseCreate.ts +30 -0
  33. package/template-admin-server/src/entities/Menu.ts +39 -0
  34. package/template-admin-server/src/entities/Role.ts +36 -0
  35. package/template-admin-server/src/entities/User.ts +35 -0
  36. package/template-admin-server/src/entities/index.ts +10 -0
  37. package/template-admin-server/src/filter/default.filter.ts +22 -0
  38. package/template-admin-server/src/filter/notfound.filter.ts +23 -0
  39. package/template-admin-server/src/middleware/helper.middleware.ts +28 -0
  40. package/template-admin-server/src/middleware/index.ts +9 -0
  41. package/template-admin-server/src/middleware/jwt.middleware.ts +32 -0
  42. package/template-admin-server/src/middleware/report.middleware.ts +26 -0
  43. package/template-admin-server/src/service/api.service.ts +174 -0
  44. package/template-admin-server/src/service/basic.ts +118 -0
  45. package/template-admin-server/src/service/index.ts +10 -0
  46. package/template-admin-server/src/service/menu.service.ts +139 -0
  47. package/template-admin-server/src/service/role.service.ts +286 -0
  48. package/template-admin-server/src/service/user.service.ts +124 -0
  49. package/template-admin-server/src/strategy/jwt.strategy.ts +26 -0
  50. package/template-admin-server/src/types/index.ts +42 -0
  51. package/template-admin-server/src/types/types.d.ts +31 -0
  52. package/template-admin-server/tsconfig.json +24 -0
  53. package/template-nuxt-admin/.vscode/extensions.json +12 -0
  54. package/template-nuxt-admin/.vscode/settings.json +39 -0
  55. package/template-nuxt-admin/Dockerfile +41 -0
  56. package/template-nuxt-admin/_gitignore +23 -0
  57. package/template-nuxt-admin/_npmrc +2 -0
  58. package/template-nuxt-admin/_nvmrc +1 -0
  59. package/template-nuxt-admin/app.vue +49 -0
  60. package/template-nuxt-admin/boot.mjs +16 -0
  61. package/template-nuxt-admin/components/ScreenFull.vue +19 -0
  62. package/template-nuxt-admin/components/TopSearch.vue +76 -0
  63. package/template-nuxt-admin/components/TopUser.vue +72 -0
  64. package/template-nuxt-admin/components/YoungChangePassword.vue +94 -0
  65. package/template-nuxt-admin/components/YoungCodeInput.vue +65 -0
  66. package/template-nuxt-admin/components/YoungEditor.vue +81 -0
  67. package/template-nuxt-admin/components/YoungLink.vue +24 -0
  68. package/template-nuxt-admin/components/YoungLoading.vue +39 -0
  69. package/template-nuxt-admin/components/ZenMode.vue +21 -0
  70. package/template-nuxt-admin/components/layout/Footer.vue +29 -0
  71. package/template-nuxt-admin/components/layout/Logo.vue +54 -0
  72. package/template-nuxt-admin/components/layout/Main.vue +26 -0
  73. package/template-nuxt-admin/components/layout/NavBar.vue +90 -0
  74. package/template-nuxt-admin/components/layout/SideBar.vue +96 -0
  75. package/template-nuxt-admin/components/layout/SubMenu.vue +52 -0
  76. package/template-nuxt-admin/components/layout/TabsBar.vue +184 -0
  77. package/template-nuxt-admin/composables/api.ts +97 -0
  78. package/template-nuxt-admin/composables/apis/delete.ts +37 -0
  79. package/template-nuxt-admin/composables/apis/get.ts +83 -0
  80. package/template-nuxt-admin/composables/apis/index.ts +10 -0
  81. package/template-nuxt-admin/composables/apis/patch.ts +74 -0
  82. package/template-nuxt-admin/composables/apis/post.ts +85 -0
  83. package/template-nuxt-admin/composables/config.ts +13 -0
  84. package/template-nuxt-admin/composables/icon.ts +25 -0
  85. package/template-nuxt-admin/composables/nav.ts +85 -0
  86. package/template-nuxt-admin/composables/tags.ts +136 -0
  87. package/template-nuxt-admin/composables/user.ts +48 -0
  88. package/template-nuxt-admin/config/.devrc +1 -0
  89. package/template-nuxt-admin/config/.onlinerc +1 -0
  90. package/template-nuxt-admin/config/.testrc +1 -0
  91. package/template-nuxt-admin/env.d.ts +47 -0
  92. package/template-nuxt-admin/error.vue +61 -0
  93. package/template-nuxt-admin/eslint.config.js +33 -0
  94. package/template-nuxt-admin/layouts/blank.vue +9 -0
  95. package/template-nuxt-admin/layouts/default.vue +163 -0
  96. package/template-nuxt-admin/middleware/auth.global.ts +66 -0
  97. package/template-nuxt-admin/nuxt.config.ts +106 -0
  98. package/template-nuxt-admin/package.json +63 -0
  99. package/template-nuxt-admin/pages/home/[id].vue +28 -0
  100. package/template-nuxt-admin/pages/index.vue +15 -0
  101. package/template-nuxt-admin/pages/login.vue +199 -0
  102. package/template-nuxt-admin/pages/system/api.vue +177 -0
  103. package/template-nuxt-admin/pages/system/hooks/useRole.ts +328 -0
  104. package/template-nuxt-admin/pages/system/menuList.vue +351 -0
  105. package/template-nuxt-admin/pages/system/role.vue +144 -0
  106. package/template-nuxt-admin/pages/system/user.vue +223 -0
  107. package/template-nuxt-admin/plugins/directive.ts +26 -0
  108. package/template-nuxt-admin/public/bg.webp +0 -0
  109. package/template-nuxt-admin/public/default_avatar.svg +1 -0
  110. package/template-nuxt-admin/public/favicon.svg +2 -0
  111. package/template-nuxt-admin/public/image_placeholder.svg +15 -0
  112. package/template-nuxt-admin/public/index.umd.js +74 -0
  113. package/template-nuxt-admin/public/index.umd.js.map +1 -0
  114. package/template-nuxt-admin/public/logo.svg +2 -0
  115. package/template-nuxt-admin/public/tabbar_bg.png +0 -0
  116. package/template-nuxt-admin/server/api/[...all].ts +10 -0
  117. package/template-nuxt-admin/server/plugins/env.ts +88 -0
  118. package/template-nuxt-admin/server/routes/get/env.ts +13 -0
  119. package/template-nuxt-admin/server/tsconfig.json +3 -0
  120. package/template-nuxt-admin/server/utils/index.ts +36 -0
  121. package/template-nuxt-admin/styles/element.scss +30 -0
  122. package/template-nuxt-admin/styles/index.scss +59 -0
  123. package/template-nuxt-admin/styles/variable.scss +103 -0
  124. package/template-nuxt-admin/tsconfig.json +7 -0
  125. package/template-nuxt-admin/typings/global.d.ts +16 -0
  126. package/template-nuxt-admin/typings/system.d.ts +67 -0
  127. package/template-nuxt-admin/typings/user.d.ts +19 -0
  128. package/template-nuxt-admin/uno.config.ts +40 -0
  129. package/template-nuxt-admin/utils/tool.ts +195 -0
  130. package/template-nuxt-admin/yarn.lock +8398 -0
  131. package/template-nuxt-website/.nvmrc +1 -0
  132. package/template-nuxt-website/.vscode/extensions.json +12 -0
  133. package/template-nuxt-website/.vscode/settings.json +39 -0
  134. package/template-nuxt-website/Dockerfile +41 -0
  135. package/template-nuxt-website/_gitignore +26 -0
  136. package/template-nuxt-website/_npmrc +2 -0
  137. package/template-nuxt-website/_nvmrc +1 -0
  138. package/template-nuxt-website/app.vue +66 -0
  139. package/template-nuxt-website/assets/tabbar/event.png +0 -0
  140. package/template-nuxt-website/assets/tabbar/event_active.png +0 -0
  141. package/template-nuxt-website/assets/tabbar/game.png +0 -0
  142. package/template-nuxt-website/assets/tabbar/game_active.png +0 -0
  143. package/template-nuxt-website/assets/tabbar/shop.png +0 -0
  144. package/template-nuxt-website/assets/tabbar/shop_active.png +0 -0
  145. package/template-nuxt-website/assets/tabbar/user.png +0 -0
  146. package/template-nuxt-website/assets/tabbar/user_active.png +0 -0
  147. package/template-nuxt-website/boot.mjs +16 -0
  148. package/template-nuxt-website/components/AboutNav.vue +27 -0
  149. package/template-nuxt-website/components/BreadNav.vue +35 -0
  150. package/template-nuxt-website/components/Follow.vue +48 -0
  151. package/template-nuxt-website/components/FriendLink.vue +36 -0
  152. package/template-nuxt-website/components/mobile/NavBar.vue +50 -0
  153. package/template-nuxt-website/components/top/Extra.vue +50 -0
  154. package/template-nuxt-website/components/top/Nav.vue +87 -0
  155. package/template-nuxt-website/components/young/Banner.vue +100 -0
  156. package/template-nuxt-website/components/young/Footer.vue +44 -0
  157. package/template-nuxt-website/components/young/Header.vue +25 -0
  158. package/template-nuxt-website/components/young/Tabbar.vue +76 -0
  159. package/template-nuxt-website/composables/ad.ts +20 -0
  160. package/template-nuxt-website/composables/config.ts +11 -0
  161. package/template-nuxt-website/composables/nav.ts +30 -0
  162. package/template-nuxt-website/composables/share.ts +22 -0
  163. package/template-nuxt-website/composables/utils.ts +84 -0
  164. package/template-nuxt-website/config/.devrc +11 -0
  165. package/template-nuxt-website/config/.onlinerc +13 -0
  166. package/template-nuxt-website/config/.testrc +11 -0
  167. package/template-nuxt-website/env.d.ts +55 -0
  168. package/template-nuxt-website/error.vue +69 -0
  169. package/template-nuxt-website/eslint.config.js +34 -0
  170. package/template-nuxt-website/layouts/default.vue +80 -0
  171. package/template-nuxt-website/layouts/home.vue +75 -0
  172. package/template-nuxt-website/layouts/tabbar.vue +78 -0
  173. package/template-nuxt-website/nuxt.config.ts +98 -0
  174. package/template-nuxt-website/package.json +41 -0
  175. package/template-nuxt-website/pages/index.html.vue +16 -0
  176. package/template-nuxt-website/pages/index.vue +29 -0
  177. package/template-nuxt-website/pages/match.html.vue +23 -0
  178. package/template-nuxt-website/pages/news/[id].html.vue +57 -0
  179. package/template-nuxt-website/pages/news.html.vue +26 -0
  180. package/template-nuxt-website/pages/shop.html.vue +26 -0
  181. package/template-nuxt-website/public/favicon.ico +0 -0
  182. package/template-nuxt-website/public/robots.txt +2 -0
  183. package/template-nuxt-website/public/svg/image_placeholder.svg +15 -0
  184. package/template-nuxt-website/server/api/get_footer_info.get.ts +52 -0
  185. package/template-nuxt-website/server/api/get_gray_status.get.ts +38 -0
  186. package/template-nuxt-website/server/api/get_head_nav.get.ts +38 -0
  187. package/template-nuxt-website/server/api/get_home_banner.get.ts +28 -0
  188. package/template-nuxt-website/server/api/get_seo_info.get.ts +32 -0
  189. package/template-nuxt-website/server/middleware/platform.ts +11 -0
  190. package/template-nuxt-website/server/plugins/init.ts +147 -0
  191. package/template-nuxt-website/server/tsconfig.json +3 -0
  192. package/template-nuxt-website/server/utils/index.ts +12 -0
  193. package/template-nuxt-website/server/utils/proxy.ts +59 -0
  194. package/template-nuxt-website/tsconfig.json +4 -0
  195. package/template-nuxt-website/typings/banner.d.ts +30 -0
  196. package/template-nuxt-website/typings/nav.d.ts +34 -0
  197. package/template-nuxt-website/typings/system.d.ts +22 -0
  198. package/template-nuxt-website/uno.config.ts +40 -0
  199. package/template-nuxt-website/utils/tool.ts +171 -0
  200. package/template-nuxt-website/yarn.lock +8018 -0
  201. package/template-uni-app/.eslintignore +1 -0
  202. package/template-uni-app/.eslintrc +16 -0
  203. package/template-uni-app/.vscode/css.code-snippets +398 -0
  204. package/template-uni-app/.vscode/extensions.json +12 -0
  205. package/template-uni-app/.vscode/js.code-snippets +1669 -0
  206. package/template-uni-app/.vscode/settings.json +39 -0
  207. package/template-uni-app/.vscode/vue-html.code-snippets +682 -0
  208. package/template-uni-app/_env +3 -0
  209. package/template-uni-app/_env.development +11 -0
  210. package/template-uni-app/_env.production +8 -0
  211. package/template-uni-app/_env.test +11 -0
  212. package/template-uni-app/_gitignore +3 -0
  213. package/template-uni-app/_npmrc +2 -0
  214. package/template-uni-app/_nvmrc +1 -0
  215. package/template-uni-app/auto-imports.d.ts +413 -0
  216. package/template-uni-app/components.d.ts +17 -0
  217. package/template-uni-app/custom-plugins/index.ts +7 -0
  218. package/template-uni-app/custom-plugins/multiconf.ts +74 -0
  219. package/template-uni-app/eslint.config.js +35 -0
  220. package/template-uni-app/index.html +23 -0
  221. package/template-uni-app/manifest.config.ts +88 -0
  222. package/template-uni-app/package.json +109 -0
  223. package/template-uni-app/pages.config.ts +58 -0
  224. package/template-uni-app/pnpm-lock.yaml +10981 -0
  225. package/template-uni-app/src/App.vue +79 -0
  226. package/template-uni-app/src/apis/index.ts +54 -0
  227. package/template-uni-app/src/apis/requests/get.ts +52 -0
  228. package/template-uni-app/src/apis/requests/index.ts +8 -0
  229. package/template-uni-app/src/apis/requests/post.ts +23 -0
  230. package/template-uni-app/src/components/young-loading/young-loading.vue +36 -0
  231. package/template-uni-app/src/components/young-loading-mini/young-loading-mini.vue +35 -0
  232. package/template-uni-app/src/components/young-navbar/young-navbar.vue +252 -0
  233. package/template-uni-app/src/components/young-tabbar/young-tabbar.vue +145 -0
  234. package/template-uni-app/src/config/enum.ts +47 -0
  235. package/template-uni-app/src/config/index.ts +8 -0
  236. package/template-uni-app/src/config/map.ts +15 -0
  237. package/template-uni-app/src/env.d.ts +36 -0
  238. package/template-uni-app/src/layouts/default.vue +22 -0
  239. package/template-uni-app/src/layouts/tabbar.vue +38 -0
  240. package/template-uni-app/src/main.ts +20 -0
  241. package/template-uni-app/src/manifest.json +75 -0
  242. package/template-uni-app/src/pages/demo/index.vue +30 -0
  243. package/template-uni-app/src/pages/index.vue +65 -0
  244. package/template-uni-app/src/pages/my.vue +30 -0
  245. package/template-uni-app/src/pages.json +74 -0
  246. package/template-uni-app/src/static/back.png +0 -0
  247. package/template-uni-app/src/static/h.png +0 -0
  248. package/template-uni-app/src/static/home.png +0 -0
  249. package/template-uni-app/src/static/home_active.png +0 -0
  250. package/template-uni-app/src/static/more.png +0 -0
  251. package/template-uni-app/src/static/my.png +0 -0
  252. package/template-uni-app/src/static/my_active.png +0 -0
  253. package/template-uni-app/src/static/network.png +0 -0
  254. package/template-uni-app/src/store/index.ts +16 -0
  255. package/template-uni-app/src/store/local/index.ts +42 -0
  256. package/template-uni-app/src/store/system.ts +21 -0
  257. package/template-uni-app/src/typings/global.d.ts +7 -0
  258. package/template-uni-app/src/uni.scss +76 -0
  259. package/template-uni-app/src/utils/auth.ts +204 -0
  260. package/template-uni-app/src/utils/index.ts +11 -0
  261. package/template-uni-app/src/utils/map.ts +98 -0
  262. package/template-uni-app/src/utils/modal.ts +120 -0
  263. package/template-uni-app/src/utils/route.ts +151 -0
  264. package/template-uni-app/src/utils/system.ts +67 -0
  265. package/template-uni-app/tsconfig.json +16 -0
  266. package/template-uni-app/unocss.config.ts +30 -0
  267. package/template-uni-app/vite.config.ts +63 -0
  268. package/template-uni-app/volar.config.js +6 -0
  269. package/template-vue-mobile/.vscode/base.code-snippets +24 -0
  270. package/template-vue-mobile/.vscode/extensions.json +10 -0
  271. package/template-vue-mobile/.vscode/settings.json +7 -0
  272. package/template-vue-mobile/Dockerfile +42 -0
  273. package/template-vue-mobile/_env +6 -0
  274. package/template-vue-mobile/_gitignore +30 -0
  275. package/template-vue-mobile/boot.mjs +16 -0
  276. package/template-vue-mobile/build/custom-plugin.ts +30 -0
  277. package/template-vue-mobile/build/index.ts +7 -0
  278. package/template-vue-mobile/build/plugins.ts +68 -0
  279. package/template-vue-mobile/config/.devrc +2 -0
  280. package/template-vue-mobile/config/.onlinerc +1 -0
  281. package/template-vue-mobile/config/.testrc +1 -0
  282. package/template-vue-mobile/index.html +25 -0
  283. package/template-vue-mobile/nitro.config.ts +19 -0
  284. package/template-vue-mobile/package.json +48 -0
  285. package/template-vue-mobile/plugins/env.ts +26 -0
  286. package/template-vue-mobile/public/vite.svg +1 -0
  287. package/template-vue-mobile/rome.json +24 -0
  288. package/template-vue-mobile/routes/[...all].ts +11 -0
  289. package/template-vue-mobile/routes/get/env.ts +25 -0
  290. package/template-vue-mobile/src/App.vue +29 -0
  291. package/template-vue-mobile/src/auto-components.d.ts +24 -0
  292. package/template-vue-mobile/src/auto-imports.d.ts +289 -0
  293. package/template-vue-mobile/src/components/Init.vue +36 -0
  294. package/template-vue-mobile/src/global.d.ts +7 -0
  295. package/template-vue-mobile/src/hooks/useVerifyCode.ts +46 -0
  296. package/template-vue-mobile/src/layouts/blank.vue +9 -0
  297. package/template-vue-mobile/src/layouts/default.vue +27 -0
  298. package/template-vue-mobile/src/layouts/sub.vue +20 -0
  299. package/template-vue-mobile/src/main.ts +35 -0
  300. package/template-vue-mobile/src/modules/1-router.ts +40 -0
  301. package/template-vue-mobile/src/modules/2-pinia.ts +10 -0
  302. package/template-vue-mobile/src/modules/3-net.ts +46 -0
  303. package/template-vue-mobile/src/modules/4-auth.ts +64 -0
  304. package/template-vue-mobile/src/views/[...all_404].vue +557 -0
  305. package/template-vue-mobile/src/views/base/login.vue +110 -0
  306. package/template-vue-mobile/src/views/base/resetPasswd.vue +88 -0
  307. package/template-vue-mobile/src/views/index.vue +18 -0
  308. package/template-vue-mobile/src/views/my.vue +15 -0
  309. package/template-vue-mobile/src/views/sub.vue +18 -0
  310. package/template-vue-mobile/src/vite-env.d.ts +43 -0
  311. package/template-vue-mobile/tsconfig.json +21 -0
  312. package/template-vue-mobile/tsconfig.node.json +9 -0
  313. package/template-vue-mobile/unocss.config.ts +47 -0
  314. package/template-vue-mobile/vite.config.ts +32 -0
  315. package/template-vue-mobile/yarn.lock +4395 -0
  316. package/template-vue-thin/.vscode/extensions.json +10 -0
  317. package/template-vue-thin/.vscode/settings.json +4 -0
  318. package/template-vue-thin/_env +1 -0
  319. package/template-vue-thin/_gitignore +29 -0
  320. package/template-vue-thin/index.html +21 -0
  321. package/template-vue-thin/package.json +40 -0
  322. package/template-vue-thin/public/vite.svg +1 -0
  323. package/template-vue-thin/src/App.vue +9 -0
  324. package/template-vue-thin/src/layouts/blank.vue +9 -0
  325. package/template-vue-thin/src/layouts/default.vue +12 -0
  326. package/template-vue-thin/src/layouts/list.vue +12 -0
  327. package/template-vue-thin/src/main.ts +58 -0
  328. package/template-vue-thin/src/views/[...all_404].vue +488 -0
  329. package/template-vue-thin/src/views/index.vue +19 -0
  330. package/template-vue-thin/src/views/list.vue +17 -0
  331. package/template-vue-thin/src/vite-env.d.ts +22 -0
  332. package/template-vue-thin/tsconfig.json +21 -0
  333. package/template-vue-thin/tsconfig.node.json +9 -0
  334. package/template-vue-thin/unocss.config.ts +47 -0
  335. package/template-vue-thin/vite.config.ts +64 -0
  336. package/tsconfig.json +11 -0
  337. package/dist/index.mjs +0 -51
@@ -0,0 +1,682 @@
1
+ {
2
+ "#ifdef": {
3
+ "body": [
4
+ "<!-- #ifdef ${1|APP-PLUS,MP,MP-ALIPAY,MP-BAIDU,MP-WEIXIN,MP-QQ,H5|} -->",
5
+ "$0",
6
+ "<!-- #endif -->"
7
+ ],
8
+ "prefix": "ifdef",
9
+ "project": "uni-app",
10
+ "scope": "vue-html"
11
+ },
12
+ "#ifndef": {
13
+ "body": [
14
+ "<!-- #ifndef ${1|APP-PLUS,MP,MP-ALIPAY,MP-BAIDU,MP-WEIXIN,MP-QQ,H5|} -->",
15
+ "$0",
16
+ "<!-- #endif -->"
17
+ ],
18
+ "prefix": "ifndef",
19
+ "project": "uni-app",
20
+ "scope": "vue-html"
21
+ },
22
+ "Vue Base": {
23
+ "body": [
24
+ "<template>",
25
+ "\t<${1:div}>",
26
+ "",
27
+ "\t</${1:div}>",
28
+ "</template>",
29
+ "",
30
+ "<script>",
31
+ "\texport default {",
32
+ "\t\t${0}",
33
+ "\t}",
34
+ "</script>",
35
+ "",
36
+ "<style scoped>",
37
+ "",
38
+ "</style>"
39
+ ],
40
+ "description": "Base for Vue File",
41
+ "prefix": "vbase",
42
+ "scope": "vue-html"
43
+ },
44
+ "Vue Class Binding": {
45
+ "body": ["<${1|div|} :class=\"{ ${2:className}: ${3:data} }\"><,${1:div}>"],
46
+ "description": "vue class binding",
47
+ "prefix": "vclass",
48
+ "scope": "vue-html"
49
+ },
50
+ "Vue Class Binding Object": {
51
+ "body": [
52
+ "<${1|div|} :class=\"[${2:classNameA}, ${3:classNameB}]\"><,${1:div}>"
53
+ ],
54
+ "description": "vue class binding",
55
+ "prefix": "vclass-obj",
56
+ "scope": "vue-html"
57
+ },
58
+ "Vue Component with Props Binding": {
59
+ "body": ["<${1|component|} :${1:propName}=\"${0}\"><,${1:component}>"],
60
+ "description": "component element with props",
61
+ "prefix": "vel-props",
62
+ "scope": "vue-html"
63
+ },
64
+ "Vue Image Source Binding": {
65
+ "body": [
66
+ "<img :src=\"'/path/to/images/' + ${1:fileName}\" alt=\"${2:altText}\"/>"
67
+ ],
68
+ "description": "image source binding",
69
+ "prefix": "vsrc",
70
+ "scope": "vue-html"
71
+ },
72
+ "Vue Multiple Conditional Class Bindings": {
73
+ "body": [
74
+ "<${1|div|} :class=\"[${2:classNameA}, {${3:classNameB} : ${4:condition}}]\"><,${1:div}>"
75
+ ],
76
+ "description": "vue multiple conditional class bindings",
77
+ "prefix": "vclass-obj-mult",
78
+ "scope": "vue-html"
79
+ },
80
+ "Vue Nuxt Routing Link": {
81
+ "body": ["<nuxt-link to=\"/${1:page}\">${1:page}</nuxt-link>"],
82
+ "description": "nuxt routing link",
83
+ "prefix": "vnuxtl",
84
+ "scope": "vue-html"
85
+ },
86
+ "Vue Style Binding": {
87
+ "body": [
88
+ "<${1|div|} :style=\"{ fontSize: ${2:data} + 'px' }\"><,${1:div}>"
89
+ ],
90
+ "description": "vue inline style binding",
91
+ "prefix": "vstyle",
92
+ "scope": "vue-html"
93
+ },
94
+ "Vue Style Binding Object": {
95
+ "body": [
96
+ "<${1|div|} :style=\"[${2:styleObjectA}, ${3:styleObjectB]}\"><,${1:div}>"
97
+ ],
98
+ "description": "vue inline style binding, objects",
99
+ "prefix": "vstyle-obj",
100
+ "scope": "vue-html"
101
+ },
102
+ "Vue Transition Component with JavaScript Hooks": {
103
+ "body": [
104
+ "<transition",
105
+ "\tmode=\"out-in\"",
106
+ "\t@before-enter=\"beforeEnter\"",
107
+ "\t@enter=\"enter\"",
108
+ "",
109
+ "\t@before-leave=\"beforeLeave\"",
110
+ "\t@leave=\"leave\"",
111
+ "\t:css=\"false\">",
112
+ "",
113
+ "</transition>"
114
+ ],
115
+ "description": "transition component js hooks",
116
+ "prefix": "vanim",
117
+ "scope": "vue-html"
118
+ },
119
+ "Vue v-for": {
120
+ "body": [
121
+ "<${1:div} v-for=\"${2:item} in ${2:item}s\" :key=\"${2:item}.id\">",
122
+ "\t{{ ${2:item} }}",
123
+ "</${1:div}>"
124
+ ],
125
+ "description": "vfor statement",
126
+ "prefix": "vfor",
127
+ "scope": "vue-html"
128
+ },
129
+ "Vue v-model Directive": {
130
+ "body": ["<input v-model=\"${1:data}\" type=\"text\" />"],
131
+ "description": "v-model directive",
132
+ "prefix": "vmodel",
133
+ "scope": "vue-html"
134
+ },
135
+ "Vue v-model Number Directive": {
136
+ "body": [
137
+ "<input v-model.number=\"${1:numData}\" type=\"number\" step=\"1\" />"
138
+ ],
139
+ "description": "v-model directive number input",
140
+ "prefix": "vmodel-num",
141
+ "scope": "vue-html"
142
+ },
143
+ "Vue v-on Shortcut Directive": {
144
+ "body": ["@click=\"${1:handler}(${2:arg}, $event)\""],
145
+ "description": "v-on click handler with arguments",
146
+ "prefix": "von",
147
+ "scope": "vue-html"
148
+ },
149
+ "uAccordion": {
150
+ "body": [
151
+ "<view class=\"uni-list\">",
152
+ "\t<view class=\"uni-list-cell uni-collapse\" v-for=\"(item,index) in list$1\" :key=\"index\">",
153
+ "\t\t<view class=\"uni-list-cell-navigate uni-navigate-bottom\" :class=\"item.show ? 'uni-active' : ''\" @click=\"trigerCollapse$0(index)\">",
154
+ "\t\t\t折叠面板{{index}}",
155
+ "\t\t</view>",
156
+ "\t\t<view class=\"uni-collapse-content\" :class=\"item.show ? 'uni-active' : ''\">",
157
+ "\t\t\t<view class=\"page-pd\">",
158
+ "\t\t\t\t<view class=\"uni-h1\">hello uni-app</view>",
159
+ "\t\t\t\t<view class=\"uni-h2\">hello uni-app</view>",
160
+ "\t\t\t\t<view class=\"uni-h3\">hello uni-app</view>",
161
+ "\t\t\t</view>",
162
+ "\t\t</view>",
163
+ "\t</view>",
164
+ "</view>"
165
+ ],
166
+ "prefix": "uaccordion",
167
+ "project": "uni-app",
168
+ "scope": "vue-html"
169
+ },
170
+ "uAudio": {
171
+ "body": [
172
+ "<audio :src=\"$1\" :poster=\"$0\" :name=\"$2\" :author=\"$3\" :action=\"$4\" controls></audio>"
173
+ ],
174
+ "prefix": "uaudio",
175
+ "project": "uni-app",
176
+ "scope": "vue-html"
177
+ },
178
+ "uBadge": {
179
+ "body": ["<uni-badge text=\"$1\" type=\"$2\"></uni-badge>"],
180
+ "prefix": "ubadge",
181
+ "project": "uni-app",
182
+ "scope": "vue-html"
183
+ },
184
+ "uButton": {
185
+ "body": ["<button type=\"primary\">$1</button>"],
186
+ "prefix": "ubutton",
187
+ "project": "uni-app",
188
+ "scope": "vue-html"
189
+ },
190
+ "uCalendar": {
191
+ "body": [
192
+ "<uni-calendar lunar=\"\" @change=\"$1\" @to-click=\"$2\"></uni-calendar>"
193
+ ],
194
+ "prefix": "ucalendar",
195
+ "project": "uni-app",
196
+ "scope": "vue-html"
197
+ },
198
+ "uCard": {
199
+ "body": [
200
+ "<uni-card title=\"标题文字\" thumbnail=\"$1\" extra=\"额外信息$2\" note=\"Tips$3\">",
201
+ "\t内容主体,可自定义内容及样式$4",
202
+ "</uni-card>"
203
+ ],
204
+ "prefix": "ucard",
205
+ "project": "uni-app",
206
+ "scope": "vue-html"
207
+ },
208
+ "uCheckbox": {
209
+ "body": [
210
+ "<label class=\"checkbox\">",
211
+ "\t<checkbox value=\"$1\" checked= />$0",
212
+ "</label>"
213
+ ],
214
+ "prefix": "ucheckbox",
215
+ "project": "uni-app",
216
+ "scope": "vue-html"
217
+ },
218
+ "uCollapse": {
219
+ "body": [
220
+ "<uni-collapse @change=\"$1\">",
221
+ "\t<uni-collapse-item title=\"$2\">",
222
+ "\t\t内容$3",
223
+ "\t</uni-collapse-item>",
224
+ "</uni-collapse>"
225
+ ],
226
+ "prefix": "uCollapse",
227
+ "project": "uni-app",
228
+ "scope": "vue-html"
229
+ },
230
+ "uCountDown": {
231
+ "body": [
232
+ "<uni-countdown font-color=\"$1\" bgr-color=\"$2\" timer=\"$3\"></uni-countdown>"
233
+ ],
234
+ "prefix": "ucountdown",
235
+ "project": "uni-app",
236
+ "scope": "vue-html"
237
+ },
238
+ "uDrawer": {
239
+ "body": [
240
+ "<uni-drawer :visible=\"$1\">",
241
+ "\t<view style=\"padding:30upx;\">",
242
+ "\t\t$2",
243
+ "\t</view>",
244
+ "</uni-drawer>"
245
+ ],
246
+ "prefix": "uDrawer",
247
+ "project": "uni-app",
248
+ "scope": "vue-html"
249
+ },
250
+ "uEditor": {
251
+ "body": ["<editor placeholder=\"$1\"></editor>"],
252
+ "prefix": "uEditor",
253
+ "project": "uni-app",
254
+ "scope": "vue-html"
255
+ },
256
+ "uForm": {
257
+ "body": [
258
+ "<form @submit=\"formSubmit\" @reset=\"formReset\">",
259
+ "\t<view class=\"section section_gap\">",
260
+ "\t\t<view class=\"section__title\">switch$1</view>",
261
+ "\t\t<switch name=\"switch\" />",
262
+ "\t</view>",
263
+ "\t<view class=\"section section_gap\">",
264
+ "\t\t<view class=\"section__title\">slider</view>",
265
+ "\t\t<slider name=\"slider\" show-value></slider>",
266
+ "\t</view>",
267
+ "\t<view class=\"section\">",
268
+ "\t\t<view class=\"section__title\">input</view>",
269
+ "\t\t<input name=\"input\" placeholder=\"please input here\" />",
270
+ "\t</view>",
271
+ "\t<view class=\"section section_gap\">",
272
+ "\t\t<view class=\"section__title\">radio</view>",
273
+ "\t\t<radio-group name=\"radio-group\">",
274
+ "\t\t<label>",
275
+ "\t\t\t<radio value=\"radio1\" />radio1</label>",
276
+ "\t\t<label>",
277
+ "\t\t\t<radio value=\"radio2\" />radio2</label>",
278
+ "\t\t</radio-group>",
279
+ "\t</view>",
280
+ "\t<view class=\"section section_gap\">",
281
+ "\t\t<view class=\"section__title\">checkbox</view>",
282
+ "\t\t<checkbox-group name=\"checkbox\">",
283
+ "\t\t\t<label>",
284
+ "\t\t\t\t<checkbox value=\"checkbox1\" />checkbox1</label>",
285
+ "\t\t\t<label>",
286
+ "\t\t\t\t<checkbox value=\"checkbox2\" />checkbox2</label>",
287
+ "\t\t</checkbox-group>",
288
+ "\t</view>",
289
+ "\t<view class=\"btn-area\">",
290
+ "\t\t<button formType=\"submit\">Submit</button>",
291
+ "\t\t<button formType=\"reset\">Reset</button>",
292
+ "\t</view>",
293
+ "</form>"
294
+ ],
295
+ "prefix": "uform",
296
+ "project": "uni-app",
297
+ "scope": "vue-html"
298
+ },
299
+ "uGrid": {
300
+ "body": ["<uni-grid :data=\"$1\"></uni-grid>"],
301
+ "prefix": "ugrid",
302
+ "project": "uni-app",
303
+ "scope": "vue-html"
304
+ },
305
+ "uIcon": {
306
+ "body": ["<uni-icon type=\"$1\"></uni-icon>"],
307
+ "prefix": "uicon",
308
+ "project": "uni-app",
309
+ "scope": "vue-html"
310
+ },
311
+ "uImage": {
312
+ "body": ["<image src=\"$1\" mode=\"$2\">$0</image>"],
313
+ "prefix": "uimage",
314
+ "project": "uni-app",
315
+ "scope": "vue-html"
316
+ },
317
+ "uInput": {
318
+ "body": ["<input type=\"text$1\" value=\"$0\" />"],
319
+ "prefix": "uinput",
320
+ "project": "uni-app",
321
+ "scope": "vue-html"
322
+ },
323
+ "uList": {
324
+ "body": [
325
+ "<uni-list>",
326
+ "\t<uni-list-item title=\"$1\" note=\"$2\"></uni-list-item>",
327
+ "\t<uni-list-item title=\"$3\" note=\"$4\"></uni-list-item>",
328
+ "</uni-list>"
329
+ ],
330
+ "prefix": "ulist",
331
+ "project": "uni-app",
332
+ "scope": "vue-html"
333
+ },
334
+ "uListMedia": {
335
+ "body": [
336
+ "<view class=\"uni-list\">",
337
+ "\t<view class=\"uni-list-cell\" hover-class=\"uni-list-cell-hover\" v-for=\"(item,index) in list$1\" :key=\"index\">",
338
+ "\t\t<view class=\"uni-media-list\">",
339
+ "\t\t\t<image class=\"uni-media-list-logo\" :src=\"item.img$2\"></image>",
340
+ "\t\t\t<view class=\"uni-media-list-body\">",
341
+ "\t\t\t\t<view class=\"uni-media-list-text-top\">{{item.title$3}}</view>",
342
+ "\t\t\t\t<view class=\"uni-media-list-text-bottom uni-ellipsis\">{{item.content$4}}</view>",
343
+ "\t\t\t</view>",
344
+ "\t\t</view>",
345
+ "\t</view>",
346
+ "</view>"
347
+ ],
348
+ "prefix": "ulistmedia",
349
+ "project": "uni-app",
350
+ "scope": "vue-html"
351
+ },
352
+ "uLoadMore": {
353
+ "body": [
354
+ "<uni-load-more :loadingType=\"$1\" :contentText=\"$2\"></uni-load-more>"
355
+ ],
356
+ "prefix": "uloadmore",
357
+ "project": "uni-app",
358
+ "scope": "vue-html"
359
+ },
360
+ "uMap": {
361
+ "body": ["<map :latitude=\"$1\" :longitude=\"$0\"></map>"],
362
+ "prefix": "umap",
363
+ "project": "uni-app",
364
+ "scope": "vue-html"
365
+ },
366
+ "uNavBar": {
367
+ "body": [
368
+ "<uni-nav-bar left-icon=\"back\" left-text=\"返回\" right-text=\"菜单\" title=\"标题$1\"></uni-nav-bar>"
369
+ ],
370
+ "prefix": "unavbar",
371
+ "project": "uni-app",
372
+ "scope": "vue-html"
373
+ },
374
+ "uNavigator": {
375
+ "body": ["<navigator url=\"$1\">$0</navigator>"],
376
+ "prefix": "unavigator",
377
+ "project": "uni-app",
378
+ "scope": "vue-html"
379
+ },
380
+ "uNoticeBar": {
381
+ "body": ["<uni-notice-bar single=\"$1\" text=\"$2\"></uni-notice-bar>"],
382
+ "prefix": "uNoticeBar",
383
+ "project": "uni-app",
384
+ "scope": "vue-html"
385
+ },
386
+ "uNumberBox": {
387
+ "body": ["<uni-number-box @change=\"$1\"></uni-number-box>"],
388
+ "prefix": "unumberbox",
389
+ "project": "uni-app",
390
+ "scope": "vue-html"
391
+ },
392
+ "uPagination": {
393
+ "body": [
394
+ "<uni-pagination title=\"$1\" show-icon=\"$2\" total=\"$3\" current=\"$4\"></uni-pagination>"
395
+ ],
396
+ "prefix": "uPagination",
397
+ "project": "uni-app",
398
+ "scope": "vue-html"
399
+ },
400
+ "uPicker": {
401
+ "body": [
402
+ "<picker mode=\"$1\" :range=\"$2\" @change=\"$3\">",
403
+ "\t<view>picker组件</view>",
404
+ "</picker>"
405
+ ],
406
+ "prefix": "upicker",
407
+ "project": "uni-app",
408
+ "scope": "vue-html"
409
+ },
410
+ "uPickerView": {
411
+ "body": [
412
+ "<picker-view indicator-style=\"height: 50px;\" :value=\"value$1\" @change=\"bindChange\">",
413
+ "\t<picker-view-column>",
414
+ "\t\t$0",
415
+ "\t</picker-view-column>",
416
+ "\t<picker-view-column>",
417
+ "\t\t$2",
418
+ "\t</picker-view-column>",
419
+ "\t<picker-view-column>",
420
+ "\t\t",
421
+ "\t</picker-view-column>",
422
+ "</picker-view>"
423
+ ],
424
+ "prefix": "upickerview",
425
+ "project": "uni-app",
426
+ "scope": "vue-html"
427
+ },
428
+ "uPopup": {
429
+ "body": [
430
+ "<uni-popup msg=\"$1\" :show=\"true$2\" type=\"middle$3\"></uni-popup>"
431
+ ],
432
+ "prefix": "upopup",
433
+ "project": "uni-app",
434
+ "scope": "vue-html"
435
+ },
436
+ "uProductList": {
437
+ "body": [
438
+ "<view class=\"uni-product-list\">",
439
+ "\t<view class=\"uni-product\" v-for=\"(product,index) in productList$1\" :key=\"index\">",
440
+ "\t\t<view class=\"image-view\">",
441
+ "\t\t\t<image v-if=\"renderImage\" class=\"uni-product-image\" :src=\"product.image\"></image>",
442
+ "\t\t</view>",
443
+ "\t\t<view class=\"uni-product-title\">{{product.title}}</view>",
444
+ "\t\t<view class=\"uni-product-price\">",
445
+ "\t\t\t<text class=\"uni-product-price-favour\">¥{{product.originalPrice}}</text>",
446
+ "\t\t\t<text class=\"uni-product-price-original\">¥{{product.favourPrice}}</text>",
447
+ "\t\t\t<text class=\"uni-product-tip\">{{product.tip}}</text>",
448
+ "\t\t</view>",
449
+ "\t</view>",
450
+ "</view>"
451
+ ],
452
+ "prefix": "uproductlist",
453
+ "project": "uni-app",
454
+ "scope": "vue-html"
455
+ },
456
+ "uProgress": {
457
+ "body": [" <progress percent=\"$1\" show-info$0 />"],
458
+ "prefix": "uprogress",
459
+ "project": "uni-app",
460
+ "scope": "vue-html"
461
+ },
462
+ "uRadio": {
463
+ "body": [
464
+ "<label class=\"radio\">",
465
+ "\t<radio value=\"$1\" checked= />$0",
466
+ "</label>"
467
+ ],
468
+ "prefix": "uradio",
469
+ "project": "uni-app",
470
+ "scope": "vue-html"
471
+ },
472
+ "uRate": {
473
+ "body": ["<uni-rate value=\"$1\"></uni-rate>"],
474
+ "prefix": "uRate",
475
+ "project": "uni-app",
476
+ "scope": "vue-html"
477
+ },
478
+ "uRichText": {
479
+ "body": ["<rich-text :nodes=\"$1\"></rich-text>"],
480
+ "prefix": "urichtext",
481
+ "project": "uni-app",
482
+ "scope": "vue-html"
483
+ },
484
+ "uScrollView": {
485
+ "body": [
486
+ "<scroll-view scroll-y$1>",
487
+ "\t<view>$0</view>",
488
+ "\t<view></view>",
489
+ "\t<view></view>",
490
+ "\t<view></view>",
491
+ "</scroll-view>"
492
+ ],
493
+ "prefix": "uscrollview",
494
+ "project": "uni-app",
495
+ "scope": "vue-html"
496
+ },
497
+ "uSegmentedControl": {
498
+ "body": [
499
+ "<uni-segmented-control :current=\"current$1\" :values=\"$0\" @clickItem=\"$2\"></uni-segmented-control>",
500
+ "<view class=\"content\">",
501
+ "\t<view v-show=\"current === 0\">",
502
+ "\t\t选项卡1的内容",
503
+ "\t</view>",
504
+ "\t<view v-show=\"current === 1\">",
505
+ "\t\t选项卡2的内容",
506
+ "\t</view>",
507
+ "\t<view v-show=\"current === 2\">",
508
+ "\t\t选项卡3的内容",
509
+ "\t</view>",
510
+ "</view>"
511
+ ],
512
+ "prefix": "usegmentedcontrol",
513
+ "project": "uni-app",
514
+ "scope": "vue-html"
515
+ },
516
+ "uSlider": {
517
+ "body": ["<slider @change=\"$1\" show-value$0/>"],
518
+ "prefix": "uslider",
519
+ "project": "uni-app",
520
+ "scope": "vue-html"
521
+ },
522
+ "uSteps": {
523
+ "body": ["<uni-steps :options=\"$1\" :active=\"0$2\"></uni-steps>"],
524
+ "prefix": "usteps",
525
+ "project": "uni-app",
526
+ "scope": "vue-html"
527
+ },
528
+ "uSwipeAction": {
529
+ "body": [
530
+ "<uni-swipe-action :options=\"$1\">",
531
+ "\t$2",
532
+ "</uni-swipe-action>"
533
+ ],
534
+ "prefix": "uSwipeAction",
535
+ "project": "uni-app",
536
+ "scope": "vue-html"
537
+ },
538
+ "uSwiper": {
539
+ "body": [
540
+ "<swiper :indicator-dots=\"true\" :autoplay=\"true\" :interval=\"3000\" :duration=\"1000\">",
541
+ "\t<swiper-item>",
542
+ "\t\t<view class=\"swiper-item\">$1</view>",
543
+ "\t</swiper-item>",
544
+ "\t<swiper-item>",
545
+ "\t\t<view class=\"swiper-item\">$2</view>",
546
+ "\t</swiper-item>",
547
+ "\t<swiper-item>",
548
+ "\t\t<view class=\"swiper-item\">$0</view>",
549
+ "\t</swiper-item>",
550
+ "</swiper>"
551
+ ],
552
+ "prefix": "uswiper",
553
+ "project": "uni-app",
554
+ "scope": "vue-html"
555
+ },
556
+ "uSwipermsg": {
557
+ "body": [
558
+ "<view class=\"uni-swiper-msg\">",
559
+ "\t<view class=\"uni-swiper-msg-icon\">",
560
+ "\t\t<image src=\"$1\" mode=\"widthFix\"></image>",
561
+ "\t</view>",
562
+ "\t<swiper vertical=\"true\" autoplay=\"true\" circular=\"true\" interval=\"3000\">",
563
+ "\t\t<swiper-item>",
564
+ "\t\t\t<navigator>消息1</navigator>",
565
+ "\t\t</swiper-item>",
566
+ "\t\t<swiper-item>",
567
+ "\t\t\t<navigator>消息2</navigator>",
568
+ "\t\t</swiper-item>",
569
+ "\t\t<swiper-item>",
570
+ "\t\t\t<navigator>消息3</navigator>",
571
+ "\t\t</swiper-item>",
572
+ "\t</swiper>",
573
+ "</view>"
574
+ ],
575
+ "prefix": "uswipermsg",
576
+ "project": "uni-app",
577
+ "scope": "vue-html"
578
+ },
579
+ "uSwitch": {
580
+ "body": ["<switch checked @change=\"$1\" />"],
581
+ "prefix": "uswitch",
582
+ "project": "uni-app",
583
+ "scope": "vue-html"
584
+ },
585
+ "uTag": {
586
+ "body": ["<uni-tag text=\"$1\" type=\"$2\"></uni-tag>"],
587
+ "prefix": "utag",
588
+ "project": "uni-app",
589
+ "scope": "vue-html"
590
+ },
591
+ "uTemplate": {
592
+ "body": ["<template>", "\t<view>$0</view>", "</template>"],
593
+ "prefix": "utemplate",
594
+ "project": "uni-app",
595
+ "scope": "vue-html"
596
+ },
597
+ "uText": {
598
+ "body": ["<text>$0</text>"],
599
+ "prefix": "utext",
600
+ "project": "uni-app",
601
+ "scope": "vue-html"
602
+ },
603
+ "uTextarea": {
604
+ "body": ["<textarea value=\"$1\" placeholder=\"$0\" />"],
605
+ "prefix": "utextarea",
606
+ "project": "uni-app",
607
+ "scope": "vue-html"
608
+ },
609
+ "uTimeline": {
610
+ "body": [
611
+ "<view class=\"uni-timeline\">",
612
+ "\t<view class=\"uni-timeline-item uni-timeline-first-item\">",
613
+ "\t\t<view class=\"uni-timeline-item-keynode\">日期1$1</view>",
614
+ "\t\t<view class=\"uni-timeline-item-divider\"></view>",
615
+ "\t\t<view class=\"uni-timeline-item-content\">事件1</view>",
616
+ "\t</view>",
617
+ "\t<view class=\"uni-timeline-item\">",
618
+ "\t\t<view class=\"uni-timeline-item-keynode\">日期2</view>",
619
+ "\t\t<view class=\"uni-timeline-item-divider\"></view>",
620
+ "\t\t<view class=\"uni-timeline-item-content\">事件2</view>",
621
+ "\t</view>",
622
+ "\t<view class=\"uni-timeline-item uni-timeline-last-item\">",
623
+ "\t\t<view class=\"uni-timeline-item-keynode\">日期3</view>",
624
+ "\t\t<view class=\"uni-timeline-item-divider\"></view>",
625
+ "\t\t<view class=\"uni-timeline-item-content\">事件3</view>",
626
+ "\t</view>",
627
+ "</view>"
628
+ ],
629
+ "prefix": "utimeline",
630
+ "project": "uni-app",
631
+ "scope": "vue-html"
632
+ },
633
+ "uVideo": {
634
+ "body": ["<video src=\"$1\" controls></video>"],
635
+ "prefix": "uvideo",
636
+ "project": "uni-app",
637
+ "scope": "vue-html"
638
+ },
639
+ "uView": {
640
+ "body": ["<view class=\"$1\">$0</view>"],
641
+ "prefix": "uview",
642
+ "project": "uni-app",
643
+ "scope": "vue-html"
644
+ },
645
+ "uWebView": {
646
+ "body": ["<web-view src=\"$1\"></web-view>"],
647
+ "prefix": "uwebview",
648
+ "project": "uni-app",
649
+ "scope": "vue-html"
650
+ },
651
+ "view for": {
652
+ "body": [
653
+ "<view v-for=\"(item,index) in ${1:dataList}\" :key=\"index\">",
654
+ "\t$0",
655
+ "</view>"
656
+ ],
657
+ "description": "view带for循环",
658
+ "prefix": "viewfor",
659
+ "project": "uni-app",
660
+ "scope": "vue-html"
661
+ },
662
+ "view_class": {
663
+ "body": ["<view class=\"$1\">", "\t$0", "</view>"],
664
+ "prefix": "viewclass",
665
+ "scope": "vue-html",
666
+ "triggerAssist": true
667
+ },
668
+ "route": {
669
+ "body": [
670
+ "<route lang=\"json\">",
671
+ "{",
672
+ " \"needLogin\": false,",
673
+ " \"style\": {",
674
+ "",
675
+ " }",
676
+ "}",
677
+ "</route>"
678
+ ],
679
+ "prefix": "<route",
680
+ "description": "页面配置",
681
+ }
682
+ }
@@ -0,0 +1,3 @@
1
+ # 此处存放公共配置
2
+ VITE_APP_ID = tochangetowxappid_dev
3
+ VITE_CUSTOM_LOADING = true