create-young-proj 0.13.0 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +31 -22
- package/dist/index.mjs +34 -34
- package/package.json +12 -11
- package/template-nuxt-admin/README.md +23 -16
- package/template-nuxt-website/README.md +117 -0
- package/template-uni-app/README.md +5 -0
- package/template-admin-server/.editorconfig +0 -11
- package/template-admin-server/.nvmrc +0 -1
- package/template-admin-server/.vscode/extensions.json +0 -6
- package/template-admin-server/.vscode/settings.json +0 -4
- package/template-admin-server/_gitignore +0 -15
- package/template-admin-server/boot.mjs +0 -11
- package/template-admin-server/package.json +0 -60
- package/template-admin-server/rome.json +0 -22
- package/template-admin-server/src/config/config.default.ts +0 -56
- package/template-admin-server/src/configuration.ts +0 -47
- package/template-admin-server/src/controller/admin.controller.ts +0 -397
- package/template-admin-server/src/controller/api.controller.ts +0 -98
- package/template-admin-server/src/controller/base.controller.ts +0 -70
- package/template-admin-server/src/controller/dto/api.ts +0 -47
- package/template-admin-server/src/controller/dto/index.ts +0 -36
- package/template-admin-server/src/controller/dto/menu.ts +0 -41
- package/template-admin-server/src/controller/dto/role.ts +0 -41
- package/template-admin-server/src/controller/dto/user.ts +0 -52
- package/template-admin-server/src/controller/menu.controller.ts +0 -138
- package/template-admin-server/src/controller/role.controller.ts +0 -116
- package/template-admin-server/src/controller/user.controller.ts +0 -108
- package/template-admin-server/src/entities/Api.ts +0 -29
- package/template-admin-server/src/entities/BaseCreate.ts +0 -30
- package/template-admin-server/src/entities/Menu.ts +0 -39
- package/template-admin-server/src/entities/Role.ts +0 -36
- package/template-admin-server/src/entities/User.ts +0 -35
- package/template-admin-server/src/entities/index.ts +0 -10
- package/template-admin-server/src/filter/default.filter.ts +0 -22
- package/template-admin-server/src/filter/notfound.filter.ts +0 -23
- package/template-admin-server/src/middleware/helper.middleware.ts +0 -28
- package/template-admin-server/src/middleware/index.ts +0 -9
- package/template-admin-server/src/middleware/jwt.middleware.ts +0 -32
- package/template-admin-server/src/middleware/report.middleware.ts +0 -26
- package/template-admin-server/src/service/api.service.ts +0 -174
- package/template-admin-server/src/service/basic.ts +0 -118
- package/template-admin-server/src/service/index.ts +0 -10
- package/template-admin-server/src/service/menu.service.ts +0 -139
- package/template-admin-server/src/service/role.service.ts +0 -286
- package/template-admin-server/src/service/user.service.ts +0 -124
- package/template-admin-server/src/strategy/jwt.strategy.ts +0 -26
- package/template-admin-server/src/types/index.ts +0 -42
- package/template-admin-server/src/types/types.d.ts +0 -31
- package/template-admin-server/tsconfig.json +0 -24
- package/template-nuxt-admin/.eslintrc +0 -14
- package/template-nuxt-admin/.vscode/extensions.json +0 -12
- package/template-nuxt-admin/.vscode/settings.json +0 -25
- package/template-nuxt-admin/Dockerfile +0 -41
- package/template-nuxt-admin/_gitignore +0 -23
- package/template-nuxt-admin/_npmrc +0 -2
- package/template-nuxt-admin/app.vue +0 -41
- package/template-nuxt-admin/boot.mjs +0 -16
- package/template-nuxt-admin/components/ScreenFull.vue +0 -19
- package/template-nuxt-admin/components/TopSearch.vue +0 -77
- package/template-nuxt-admin/components/TopUser.vue +0 -72
- package/template-nuxt-admin/components/YoungChangePassword.vue +0 -97
- package/template-nuxt-admin/components/YoungCodeInput.vue +0 -66
- package/template-nuxt-admin/components/YoungLink.vue +0 -24
- package/template-nuxt-admin/components/YoungLoading.vue +0 -39
- package/template-nuxt-admin/components/layout/Footer.vue +0 -29
- package/template-nuxt-admin/components/layout/Logo.vue +0 -54
- package/template-nuxt-admin/components/layout/Main.vue +0 -26
- package/template-nuxt-admin/components/layout/NavBar.vue +0 -89
- package/template-nuxt-admin/components/layout/SideBar.vue +0 -96
- package/template-nuxt-admin/components/layout/SubMenu.vue +0 -52
- package/template-nuxt-admin/components/layout/TabsBar.vue +0 -184
- package/template-nuxt-admin/composables/api.ts +0 -105
- package/template-nuxt-admin/composables/apis/delete.ts +0 -37
- package/template-nuxt-admin/composables/apis/get.ts +0 -83
- package/template-nuxt-admin/composables/apis/index.ts +0 -10
- package/template-nuxt-admin/composables/apis/patch.ts +0 -74
- package/template-nuxt-admin/composables/apis/post.ts +0 -85
- package/template-nuxt-admin/composables/config.ts +0 -13
- package/template-nuxt-admin/composables/icon.ts +0 -27
- package/template-nuxt-admin/composables/nav.ts +0 -75
- package/template-nuxt-admin/composables/tags.ts +0 -136
- package/template-nuxt-admin/composables/user.ts +0 -46
- package/template-nuxt-admin/config/.devrc +0 -1
- package/template-nuxt-admin/config/.onlinerc +0 -1
- package/template-nuxt-admin/config/.testrc +0 -1
- package/template-nuxt-admin/env.d.ts +0 -47
- package/template-nuxt-admin/error.vue +0 -61
- package/template-nuxt-admin/layouts/blank.vue +0 -9
- package/template-nuxt-admin/layouts/default.vue +0 -125
- package/template-nuxt-admin/middleware/auth.global.ts +0 -69
- package/template-nuxt-admin/nuxt.config.ts +0 -106
- package/template-nuxt-admin/package.json +0 -64
- package/template-nuxt-admin/pages/home/[id].vue +0 -28
- package/template-nuxt-admin/pages/index.vue +0 -15
- package/template-nuxt-admin/pages/login.vue +0 -199
- package/template-nuxt-admin/pages/system/api.vue +0 -179
- package/template-nuxt-admin/pages/system/hooks/useRole.ts +0 -335
- package/template-nuxt-admin/pages/system/menuList.vue +0 -353
- package/template-nuxt-admin/pages/system/role.vue +0 -145
- package/template-nuxt-admin/pages/system/user.vue +0 -225
- package/template-nuxt-admin/plugins/directive.ts +0 -26
- package/template-nuxt-admin/public/bg.webp +0 -0
- package/template-nuxt-admin/public/default_avatar.svg +0 -1
- package/template-nuxt-admin/public/favicon.svg +0 -2
- package/template-nuxt-admin/public/image_placeholder.svg +0 -15
- package/template-nuxt-admin/public/logo.svg +0 -2
- package/template-nuxt-admin/public/tabbar_bg.png +0 -0
- package/template-nuxt-admin/server/api/[...all].ts +0 -10
- package/template-nuxt-admin/server/plugins/env.ts +0 -87
- package/template-nuxt-admin/server/routes/get/env.ts +0 -13
- package/template-nuxt-admin/server/tsconfig.json +0 -3
- package/template-nuxt-admin/server/utils/index.ts +0 -36
- package/template-nuxt-admin/styles/element.scss +0 -30
- package/template-nuxt-admin/styles/index.scss +0 -59
- package/template-nuxt-admin/styles/variable.scss +0 -103
- package/template-nuxt-admin/tsconfig.json +0 -7
- package/template-nuxt-admin/typings/global.d.ts +0 -16
- package/template-nuxt-admin/typings/system.d.ts +0 -66
- package/template-nuxt-admin/typings/user.d.ts +0 -19
- package/template-nuxt-admin/uno.config.ts +0 -40
- package/template-nuxt-admin/utils/tool.ts +0 -199
- package/template-nuxt-admin/yarn.lock +0 -8487
- package/template-uni-app/.eslintignore +0 -1
- package/template-uni-app/.eslintrc +0 -16
- package/template-uni-app/.vscode/.server-controller-port.log +0 -5
- package/template-uni-app/.vscode/css.code-snippets +0 -398
- package/template-uni-app/.vscode/extensions.json +0 -12
- package/template-uni-app/.vscode/js.code-snippets +0 -1669
- package/template-uni-app/.vscode/settings.json +0 -25
- package/template-uni-app/.vscode/vue-html.code-snippets +0 -682
- package/template-uni-app/_env +0 -3
- package/template-uni-app/_env.development +0 -11
- package/template-uni-app/_env.production +0 -8
- package/template-uni-app/_env.test +0 -11
- package/template-uni-app/_gitignore +0 -3
- package/template-uni-app/_npmrc +0 -2
- package/template-uni-app/auto-imports.d.ts +0 -413
- package/template-uni-app/components.d.ts +0 -17
- package/template-uni-app/custom-plugins/index.ts +0 -7
- package/template-uni-app/custom-plugins/multiconf.ts +0 -74
- package/template-uni-app/dist/dev/mp-weixin/apis/index.js +0 -43
- package/template-uni-app/dist/dev/mp-weixin/apis/requests/get.js +0 -10
- package/template-uni-app/dist/dev/mp-weixin/apis/requests/index.js +0 -1
- package/template-uni-app/dist/dev/mp-weixin/apis/requests/post.js +0 -15
- package/template-uni-app/dist/dev/mp-weixin/app.js +0 -92
- package/template-uni-app/dist/dev/mp-weixin/app.json +0 -51
- package/template-uni-app/dist/dev/mp-weixin/app.wxss +0 -2378
- package/template-uni-app/dist/dev/mp-weixin/common/assets.js +0 -13
- package/template-uni-app/dist/dev/mp-weixin/common/vendor.js +0 -9166
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.js +0 -22
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.json +0 -4
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading/young-loading.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.js +0 -22
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.json +0 -4
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/components/young-loading-mini/young-loading-mini.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.js +0 -81
- package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.json +0 -4
- package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/components/young-navbar/young-navbar.wxss +0 -108
- package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.js +0 -55
- package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.json +0 -4
- package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/components/young-tabbar/young-tabbar.wxss +0 -88
- package/template-uni-app/dist/dev/mp-weixin/config/enum.js +0 -21
- package/template-uni-app/dist/dev/mp-weixin/config/index.js +0 -1
- package/template-uni-app/dist/dev/mp-weixin/config/map.js +0 -1
- package/template-uni-app/dist/dev/mp-weixin/layouts/default.js +0 -29
- package/template-uni-app/dist/dev/mp-weixin/layouts/default.json +0 -6
- package/template-uni-app/dist/dev/mp-weixin/layouts/default.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/layouts/default.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.js +0 -56
- package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.json +0 -9
- package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/layouts/tabbar.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.js +0 -98
- package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.json +0 -4
- package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/node-modules/@dcloudio/uni-ui/lib/uni-card/uni-card.wxss +0 -125
- package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.js +0 -37
- package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.json +0 -5
- package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/pages/demo/index.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/index.js +0 -50
- package/template-uni-app/dist/dev/mp-weixin/pages/index.json +0 -5
- package/template-uni-app/dist/dev/mp-weixin/pages/index.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/pages/index.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/pages/my.js +0 -22
- package/template-uni-app/dist/dev/mp-weixin/pages/my.json +0 -3
- package/template-uni-app/dist/dev/mp-weixin/pages/my.wxml +0 -1
- package/template-uni-app/dist/dev/mp-weixin/pages/my.wxss +0 -0
- package/template-uni-app/dist/dev/mp-weixin/project.config.json +0 -55
- package/template-uni-app/dist/dev/mp-weixin/project.private.config.json +0 -6
- package/template-uni-app/dist/dev/mp-weixin/static/back.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/static/h.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/static/home.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/static/home_active.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/static/more.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/static/my.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/static/my_active.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/static/network.png +0 -0
- package/template-uni-app/dist/dev/mp-weixin/store/index.js +0 -8
- package/template-uni-app/dist/dev/mp-weixin/store/local/index.js +0 -13
- package/template-uni-app/dist/dev/mp-weixin/store/system.js +0 -14
- package/template-uni-app/dist/dev/mp-weixin/utils/modal.js +0 -78
- package/template-uni-app/dist/dev/mp-weixin/utils/route.js +0 -83
- package/template-uni-app/dist/dev/mp-weixin/utils/system.js +0 -27
- package/template-uni-app/index.html +0 -23
- package/template-uni-app/manifest.config.ts +0 -88
- package/template-uni-app/package.json +0 -108
- package/template-uni-app/pages.config.ts +0 -58
- package/template-uni-app/pnpm-lock.yaml +0 -9967
- package/template-uni-app/src/App.vue +0 -79
- package/template-uni-app/src/apis/index.ts +0 -54
- package/template-uni-app/src/apis/requests/get.ts +0 -52
- package/template-uni-app/src/apis/requests/index.ts +0 -8
- package/template-uni-app/src/apis/requests/post.ts +0 -23
- package/template-uni-app/src/components/young-loading/young-loading.vue +0 -36
- package/template-uni-app/src/components/young-loading-mini/young-loading-mini.vue +0 -35
- package/template-uni-app/src/components/young-navbar/young-navbar.vue +0 -252
- package/template-uni-app/src/components/young-tabbar/young-tabbar.vue +0 -145
- package/template-uni-app/src/config/enum.ts +0 -47
- package/template-uni-app/src/config/index.ts +0 -8
- package/template-uni-app/src/config/map.ts +0 -15
- package/template-uni-app/src/env.d.ts +0 -36
- package/template-uni-app/src/layouts/default.vue +0 -22
- package/template-uni-app/src/layouts/tabbar.vue +0 -38
- package/template-uni-app/src/main.ts +0 -20
- package/template-uni-app/src/manifest.json +0 -75
- package/template-uni-app/src/pages/demo/index.vue +0 -30
- package/template-uni-app/src/pages/index.vue +0 -65
- package/template-uni-app/src/pages/my.vue +0 -30
- package/template-uni-app/src/pages.json +0 -74
- package/template-uni-app/src/static/back.png +0 -0
- package/template-uni-app/src/static/h.png +0 -0
- package/template-uni-app/src/static/home.png +0 -0
- package/template-uni-app/src/static/home_active.png +0 -0
- package/template-uni-app/src/static/more.png +0 -0
- package/template-uni-app/src/static/my.png +0 -0
- package/template-uni-app/src/static/my_active.png +0 -0
- package/template-uni-app/src/static/network.png +0 -0
- package/template-uni-app/src/store/index.ts +0 -16
- package/template-uni-app/src/store/local/index.ts +0 -42
- package/template-uni-app/src/store/system.ts +0 -21
- package/template-uni-app/src/typings/global.d.ts +0 -7
- package/template-uni-app/src/uni.scss +0 -76
- package/template-uni-app/src/utils/auth.ts +0 -204
- package/template-uni-app/src/utils/index.ts +0 -11
- package/template-uni-app/src/utils/map.ts +0 -98
- package/template-uni-app/src/utils/modal.ts +0 -120
- package/template-uni-app/src/utils/route.ts +0 -151
- package/template-uni-app/src/utils/system.ts +0 -67
- package/template-uni-app/tsconfig.json +0 -16
- package/template-uni-app/unocss.config.ts +0 -30
- package/template-uni-app/vite.config.ts +0 -63
- package/template-uni-app/volar.config.js +0 -6
- package/template-vue-mobile/.vscode/base.code-snippets +0 -24
- package/template-vue-mobile/.vscode/extensions.json +0 -10
- package/template-vue-mobile/.vscode/settings.json +0 -7
- package/template-vue-mobile/Dockerfile +0 -42
- package/template-vue-mobile/_env +0 -6
- package/template-vue-mobile/_gitignore +0 -30
- package/template-vue-mobile/boot.mjs +0 -16
- package/template-vue-mobile/build/custom-plugin.ts +0 -30
- package/template-vue-mobile/build/index.ts +0 -7
- package/template-vue-mobile/build/plugins.ts +0 -68
- package/template-vue-mobile/config/.devrc +0 -2
- package/template-vue-mobile/config/.onlinerc +0 -1
- package/template-vue-mobile/config/.testrc +0 -1
- package/template-vue-mobile/index.html +0 -25
- package/template-vue-mobile/nitro.config.ts +0 -19
- package/template-vue-mobile/package.json +0 -48
- package/template-vue-mobile/plugins/env.ts +0 -26
- package/template-vue-mobile/public/vite.svg +0 -1
- package/template-vue-mobile/rome.json +0 -24
- package/template-vue-mobile/routes/[...all].ts +0 -11
- package/template-vue-mobile/routes/get/env.ts +0 -25
- package/template-vue-mobile/src/App.vue +0 -29
- package/template-vue-mobile/src/auto-components.d.ts +0 -24
- package/template-vue-mobile/src/auto-imports.d.ts +0 -289
- package/template-vue-mobile/src/components/Init.vue +0 -36
- package/template-vue-mobile/src/global.d.ts +0 -7
- package/template-vue-mobile/src/hooks/useVerifyCode.ts +0 -46
- package/template-vue-mobile/src/layouts/blank.vue +0 -9
- package/template-vue-mobile/src/layouts/default.vue +0 -27
- package/template-vue-mobile/src/layouts/sub.vue +0 -20
- package/template-vue-mobile/src/main.ts +0 -35
- package/template-vue-mobile/src/modules/1-router.ts +0 -40
- package/template-vue-mobile/src/modules/2-pinia.ts +0 -10
- package/template-vue-mobile/src/modules/3-net.ts +0 -46
- package/template-vue-mobile/src/modules/4-auth.ts +0 -64
- package/template-vue-mobile/src/views/[...all_404].vue +0 -557
- package/template-vue-mobile/src/views/base/login.vue +0 -110
- package/template-vue-mobile/src/views/base/resetPasswd.vue +0 -88
- package/template-vue-mobile/src/views/index.vue +0 -18
- package/template-vue-mobile/src/views/my.vue +0 -15
- package/template-vue-mobile/src/views/sub.vue +0 -18
- package/template-vue-mobile/src/vite-env.d.ts +0 -43
- package/template-vue-mobile/tsconfig.json +0 -21
- package/template-vue-mobile/tsconfig.node.json +0 -9
- package/template-vue-mobile/unocss.config.ts +0 -47
- package/template-vue-mobile/vite.config.ts +0 -32
- package/template-vue-mobile/yarn.lock +0 -4395
- package/template-vue-thin/.vscode/extensions.json +0 -10
- package/template-vue-thin/.vscode/settings.json +0 -4
- package/template-vue-thin/_env +0 -1
- package/template-vue-thin/_gitignore +0 -29
- package/template-vue-thin/index.html +0 -21
- package/template-vue-thin/package.json +0 -40
- package/template-vue-thin/public/vite.svg +0 -1
- package/template-vue-thin/src/App.vue +0 -9
- package/template-vue-thin/src/layouts/blank.vue +0 -9
- package/template-vue-thin/src/layouts/default.vue +0 -12
- package/template-vue-thin/src/layouts/list.vue +0 -12
- package/template-vue-thin/src/main.ts +0 -58
- package/template-vue-thin/src/views/[...all_404].vue +0 -488
- package/template-vue-thin/src/views/index.vue +0 -19
- package/template-vue-thin/src/views/list.vue +0 -17
- package/template-vue-thin/src/vite-env.d.ts +0 -22
- package/template-vue-thin/tsconfig.json +0 -21
- package/template-vue-thin/tsconfig.node.json +0 -9
- package/template-vue-thin/unocss.config.ts +0 -47
- package/template-vue-thin/vite.config.ts +0 -64
@@ -1,682 +0,0 @@
|
|
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
|
-
}
|
package/template-uni-app/_env
DELETED