@vft/business 0.0.14 → 0.0.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/constants/navigation-url/01.commonly-used.cjs +1 -0
- package/dist/cjs/constants/navigation-url/03.official-film.cjs +1 -0
- package/dist/cjs/constants/navigation-url/04.interview.cjs +1 -0
- package/dist/cjs/constants/navigation-url/20.blog.cjs +1 -0
- package/dist/cjs/constants/navigation-url/23.image.cjs +1 -0
- package/dist/cjs/constants/navigation-url/33.amusement.cjs +1 -0
- package/dist/cjs/constants/navigation-url/50.babel.cjs +1 -0
- package/dist/cjs/constants/navigation-url/999.download.cjs +1 -0
- package/dist/cjs/constants/navigation-url/css.cjs +1 -0
- package/dist/cjs/constants/navigation-url/everest.cjs +1 -0
- package/dist/cjs/constants/navigation-url/index.cjs +1 -0
- package/dist/cjs/constants/navigation-url/mac.cjs +1 -0
- package/dist/cjs/constants/navigation-url/me.cjs +2 -0
- package/dist/cjs/constants/navigation-url/node.cjs +1 -0
- package/dist/cjs/constants/navigation-url/other.cjs +1 -0
- package/dist/cjs/constants/navigation-url/pnpm.cjs +1 -0
- package/dist/cjs/constants/navigation-url/pwa.cjs +1 -0
- package/dist/cjs/constants/navigation-url/react.cjs +1 -0
- package/dist/cjs/constants/navigation-url/typescript.cjs +1 -0
- package/dist/cjs/constants/navigation-url/uniapp.cjs +1 -0
- package/dist/cjs/constants/navigation-url/utility.cjs +1 -0
- package/dist/cjs/constants/navigation-url/utils.cjs +1 -0
- package/dist/cjs/constants/navigation-url/vite.cjs +1 -0
- package/dist/cjs/constants/navigation-url/vue.cjs +1 -0
- package/dist/cjs/constants/navigation-url/webpack.cjs +1 -0
- package/dist/cjs/constants/third-party-search.cjs +1 -0
- package/dist/cjs/index.cjs +1 -0
- package/dist/cjs/utils/helper.cjs +1 -0
- package/dist/cjs/utils/rsa.cjs +32 -0
- package/dist/components/iky-icon/index.vue +3 -0
- package/dist/constants/index.d.ts +2 -0
- package/dist/constants/navigation-url/index.d.ts +4 -0
- package/dist/constants/navigation-url/types.d.ts +18 -0
- package/dist/constants/navigation-url/utils.d.ts +8 -0
- package/dist/constants/third-party-search.d.ts +4 -0
- package/dist/es/constants/navigation-url/01.commonly-used.js +27 -0
- package/dist/es/constants/navigation-url/03.official-film.js +20 -0
- package/dist/es/constants/navigation-url/04.interview.js +49 -0
- package/dist/es/constants/navigation-url/20.blog.js +64 -0
- package/dist/es/constants/navigation-url/23.image.js +22 -0
- package/dist/es/constants/navigation-url/33.amusement.js +32 -0
- package/dist/es/constants/navigation-url/50.babel.js +20 -0
- package/dist/es/constants/navigation-url/999.download.js +20 -0
- package/dist/es/constants/navigation-url/css.js +25 -0
- package/dist/es/constants/navigation-url/everest.js +27 -0
- package/dist/es/constants/navigation-url/index.js +56 -0
- package/dist/es/constants/navigation-url/mac.js +22 -0
- package/dist/es/constants/navigation-url/me.js +34 -0
- package/dist/es/constants/navigation-url/node.js +12 -0
- package/dist/es/constants/navigation-url/other.js +60 -0
- package/dist/es/constants/navigation-url/pnpm.js +21 -0
- package/dist/es/constants/navigation-url/pwa.js +45 -0
- package/dist/es/constants/navigation-url/react.js +16 -0
- package/dist/es/constants/navigation-url/typescript.js +19 -0
- package/dist/es/constants/navigation-url/uniapp.js +65 -0
- package/dist/es/constants/navigation-url/utility.js +67 -0
- package/dist/es/constants/navigation-url/utils.js +27 -0
- package/dist/es/constants/navigation-url/vite.js +24 -0
- package/dist/es/constants/navigation-url/vue.js +64 -0
- package/dist/es/constants/navigation-url/webpack.js +14 -0
- package/dist/es/constants/third-party-search.js +22 -0
- package/dist/es/index.js +15 -0
- package/dist/es/utils/helper.js +11 -0
- package/dist/es/utils/rsa.js +62 -0
- package/dist/index.d.ts +2 -0
- package/dist/styles/index.css +3 -0
- package/dist/styles/main.scss +3 -0
- package/dist/utils/helper.d.ts +3 -0
- package/dist/utils/index.d.ts +2 -0
- package/dist/utils/rsa.d.ts +14 -0
- package/package.json +18 -6
- package/vite.config.ts +3 -0
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import * as t from "./01.commonly-used.js";
|
|
2
|
+
import * as o from "./03.official-film.js";
|
|
3
|
+
import * as m from "./04.interview.js";
|
|
4
|
+
import * as s from "./20.blog.js";
|
|
5
|
+
import * as r from "./23.image.js";
|
|
6
|
+
import * as i from "./33.amusement.js";
|
|
7
|
+
import * as a from "./50.babel.js";
|
|
8
|
+
import * as e from "./999.download.js";
|
|
9
|
+
import * as p from "./css.js";
|
|
10
|
+
import * as f from "./everest.js";
|
|
11
|
+
import * as l from "./mac.js";
|
|
12
|
+
import * as c from "./me.js";
|
|
13
|
+
import * as n from "./node.js";
|
|
14
|
+
import * as _ from "./other.js";
|
|
15
|
+
import * as d from "./pnpm.js";
|
|
16
|
+
import * as b from "./pwa.js";
|
|
17
|
+
import * as u from "./react.js";
|
|
18
|
+
import * as v from "./typescript.js";
|
|
19
|
+
import * as w from "./uniapp.js";
|
|
20
|
+
import * as g from "./utility.js";
|
|
21
|
+
import * as y from "./vite.js";
|
|
22
|
+
import * as h from "./vue.js";
|
|
23
|
+
import * as A from "./webpack.js";
|
|
24
|
+
import { getList as L } from "./utils.js";
|
|
25
|
+
import { addPathTitle as O, getAllUrlList as T } from "./utils.js";
|
|
26
|
+
const U = /* @__PURE__ */ Object.assign({
|
|
27
|
+
"./01.commonly-used.ts": t,
|
|
28
|
+
"./03.official-film.ts": o,
|
|
29
|
+
"./04.interview.ts": m,
|
|
30
|
+
"./20.blog.ts": s,
|
|
31
|
+
"./23.image.ts": r,
|
|
32
|
+
"./33.amusement.ts": i,
|
|
33
|
+
"./50.babel.ts": a,
|
|
34
|
+
"./999.download.ts": e,
|
|
35
|
+
"./css.ts": p,
|
|
36
|
+
"./everest.ts": f,
|
|
37
|
+
"./mac.ts": l,
|
|
38
|
+
"./me.ts": c,
|
|
39
|
+
"./node.ts": n,
|
|
40
|
+
"./other.ts": _,
|
|
41
|
+
"./pnpm.ts": d,
|
|
42
|
+
"./pwa.ts": b,
|
|
43
|
+
"./react.ts": u,
|
|
44
|
+
"./typescript.ts": v,
|
|
45
|
+
"./uniapp.ts": w,
|
|
46
|
+
"./utility.ts": g,
|
|
47
|
+
"./vite.ts": y,
|
|
48
|
+
"./vue.ts": h,
|
|
49
|
+
"./webpack.ts": A
|
|
50
|
+
}), x = L(U);
|
|
51
|
+
export {
|
|
52
|
+
x as NAVIGATION_URLS,
|
|
53
|
+
O as addPathTitle,
|
|
54
|
+
T as getAllUrlList,
|
|
55
|
+
L as getList
|
|
56
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
const t = [
|
|
2
|
+
["macxf软件下载", "https://mac.macxf.com/"],
|
|
3
|
+
["老吴黑苹果工作室", "https://hpglw.com"],
|
|
4
|
+
[
|
|
5
|
+
"黑果小兵的部落阁",
|
|
6
|
+
"https://blog.daliansky.net/Add-the-CLOVER-boot-to-the-correct-posture-of-the-UEFI-Boot-Option-Menu.html"
|
|
7
|
+
],
|
|
8
|
+
["黑苹果驱动优化教程", "https://www.lucktang.com/3023.html"],
|
|
9
|
+
["黑苹果安装-1", "https://post.smzdm.com/p/andro340/"],
|
|
10
|
+
["黑苹果安装-2", "https://www.jianshu.com/p/d71ae0a8e052"],
|
|
11
|
+
[
|
|
12
|
+
"黑苹果 macOS Mojave 10.14.6 18G87",
|
|
13
|
+
"https://hpglw.com/macOS-Mojave-10.14.6-18G87-Restore.html"
|
|
14
|
+
]
|
|
15
|
+
], o = {
|
|
16
|
+
category: "mac",
|
|
17
|
+
order: 95,
|
|
18
|
+
list: t
|
|
19
|
+
};
|
|
20
|
+
export {
|
|
21
|
+
o as default
|
|
22
|
+
};
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
const t = [
|
|
2
|
+
["合肥高新租房", "https://gzfgl.hfgx.com/lhm/gateway/index"],
|
|
3
|
+
["小米账号登录", "https://account.xiaomi.com/fe/service/login/password"],
|
|
4
|
+
[
|
|
5
|
+
"谷歌广告",
|
|
6
|
+
"https://www.google.com/adsense/new/u/0/pub-4046301015031382/onboarding"
|
|
7
|
+
],
|
|
8
|
+
["百度站长", "https://ziyuan.baidu.com/linksubmit/index"],
|
|
9
|
+
[
|
|
10
|
+
"百度联盟",
|
|
11
|
+
`https://unionsudo yum -y update
|
|
12
|
+
.baidu.com/bqt/#/?fromPage=%2Fbqt%2Fmodules.html#/account/info?mioflyFx`
|
|
13
|
+
],
|
|
14
|
+
["阿里云服务器", "https://account.aliyun.com/login/login.htm"],
|
|
15
|
+
["中小学教师资格考试", "https://ntce.neea.edu.cn/"],
|
|
16
|
+
["腾讯云域名", "https://console.cloud.tencent.com/domain"],
|
|
17
|
+
[
|
|
18
|
+
"腾讯云轻量云服务器",
|
|
19
|
+
"https://console.cloud.tencent.com/lighthouse/instance/index?rid=4"
|
|
20
|
+
],
|
|
21
|
+
["七彩课堂", "https://www.timebook.cc/column84"],
|
|
22
|
+
[
|
|
23
|
+
"国家中小学智慧教育平台",
|
|
24
|
+
"https://basic.smartedu.cn/tchMaterial?defaultTag=dfb9da8a-2ae2-4b2e-a733-687e0252443f%2F8c9f2e5c-e403-4f55-812c-289021ac66a0%2F9d7edc22-dfc0-4653-95a5-cbe7e4908755%2F0e4e66fc-ae0b-451e-9a91-9b7d86c0752e"
|
|
25
|
+
],
|
|
26
|
+
["国家普通话报名系统", "https://bm.cltt.org/#/documents-print"]
|
|
27
|
+
], e = {
|
|
28
|
+
category: "我的",
|
|
29
|
+
order: 2,
|
|
30
|
+
list: t
|
|
31
|
+
};
|
|
32
|
+
export {
|
|
33
|
+
e as default
|
|
34
|
+
};
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
const e = [
|
|
2
|
+
["NodeJs英文官网", "https://nodejs.org/en/"],
|
|
3
|
+
["NodeJs中文官网", "http://nodejs.cn/api/process.html#process_process"],
|
|
4
|
+
["NodeJs各个版本下载", "https://nodejs.org/download/release/latest-v10.x/"]
|
|
5
|
+
], o = {
|
|
6
|
+
category: "NodeJS",
|
|
7
|
+
order: 10,
|
|
8
|
+
list: e
|
|
9
|
+
};
|
|
10
|
+
export {
|
|
11
|
+
o as default
|
|
12
|
+
};
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
const t = [
|
|
2
|
+
[
|
|
3
|
+
"MDN",
|
|
4
|
+
"https://developer.mozilla.org/zh-CN/docs/Web/JavaScript/Reference/Global_Objects/Object/toString"
|
|
5
|
+
],
|
|
6
|
+
["阮一峰ES6教学", "https://es6.ruanyifeng.com/#docs/module"],
|
|
7
|
+
["阮一峰ES5教学", "https://wangdoc.com/javascript/"],
|
|
8
|
+
["Web前端导航", "https://no.buging.cn/"],
|
|
9
|
+
["Web前端导航2", "https://drylint.com/"],
|
|
10
|
+
["eslint官方地址", "https://eslint.bootcss.com/"],
|
|
11
|
+
["Eslint中文开发手册", "https://cloud.tencent.com/developer/section/1135613"],
|
|
12
|
+
[
|
|
13
|
+
"hammer.js中文文档",
|
|
14
|
+
"https://www.cnblogs.com/qianduanjingying/p/5812139.html"
|
|
15
|
+
],
|
|
16
|
+
["TinyMCE中文文档", "http://tinymce.ax-z.cn/"],
|
|
17
|
+
["BootCDN", "https://www.bootcdn.cn/"],
|
|
18
|
+
[
|
|
19
|
+
"维基百科",
|
|
20
|
+
"https://zh.wikipedia.org/wiki/%E6%8A%BD%E8%B1%A1%E8%AA%9E%E6%B3%95%E6%A8%B9"
|
|
21
|
+
],
|
|
22
|
+
["stylelint", "http://stylelint.docschina.org/user-guide/rules/"],
|
|
23
|
+
["stylelint-1", "http://stylelint.cn/user-guide/"],
|
|
24
|
+
["dplayer", "https://dplayer.diygod.dev/"],
|
|
25
|
+
["Day.js中文网", "https://dayjs.fenxianglu.cn/category/"],
|
|
26
|
+
["chrome调试技巧", "https://www.frontendwingman.com/"],
|
|
27
|
+
["技术开发分享导航站", "https://www.fenxianglu.cn//"],
|
|
28
|
+
["现代 JavaScript 教程", "https://zh.javascript.info//"],
|
|
29
|
+
["husky", "https://typicode.github.io/husky/#/?id=migrate-from-v4-to-v6"],
|
|
30
|
+
[
|
|
31
|
+
"rollup中文New",
|
|
32
|
+
"https://cn.rollupjs.org/plugin-development/#resolveimportmeta"
|
|
33
|
+
],
|
|
34
|
+
["rollup中文", "https://www.rollupjs.com/guide/tutorial"],
|
|
35
|
+
["rollup文档", "https://rollupjs.org/"],
|
|
36
|
+
["husky使用总结", "https://zhuanlan.zhihu.com/p/366786798"],
|
|
37
|
+
[
|
|
38
|
+
"前端开发者需要知道的 package.json",
|
|
39
|
+
"https://juejin.cn/post/6969454249411837965"
|
|
40
|
+
],
|
|
41
|
+
["inquirer.js", "https://blog.csdn.net/qq_26733915/article/details/80461257"],
|
|
42
|
+
["purgecss中文文档", "https://www.purgecss.cn/"],
|
|
43
|
+
["axios中文网", "http://www.axios-js.com/"],
|
|
44
|
+
["lottie-web", "https://www.yuque.com/lottie/document/web"],
|
|
45
|
+
["UglifyJS中文文档", "https://segmentfault.com/a/1190000008995453"],
|
|
46
|
+
["gulpjs", "https://www.gulpjs.com.cn/docs/api/task/"],
|
|
47
|
+
["Prettier 中文网", "https://www.prettier.cn/docs/index.html"],
|
|
48
|
+
["AST编译转换", "https://astexplorer.net/"],
|
|
49
|
+
["mongodb", "https://www.mongodb.org.cn/"],
|
|
50
|
+
["netlify", "https://app.netlify.com/teams/miofly/overview"],
|
|
51
|
+
["gitlab", "https://gitlab.com/Miofly/mio-blog"],
|
|
52
|
+
["周报生成器", "https://weeklyreport.avemaria.fun/zh"]
|
|
53
|
+
], e = {
|
|
54
|
+
category: "技术文档地址",
|
|
55
|
+
order: 1,
|
|
56
|
+
list: t
|
|
57
|
+
};
|
|
58
|
+
export {
|
|
59
|
+
e as default
|
|
60
|
+
};
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
const E = [
|
|
2
|
+
["pnpm中文官网", "https://pnpm.io/zh/motivation"],
|
|
3
|
+
[
|
|
4
|
+
"包管理器 pnpm 中的软链与硬链",
|
|
5
|
+
"https://juejin.cn/post/7044807973868142622"
|
|
6
|
+
],
|
|
7
|
+
[
|
|
8
|
+
"精读《pnpm》",
|
|
9
|
+
"https://www.codetd.com/article/14481731#:~:text=%E6%89%80%E6%9C%89%20npm%20%E5%8C%85%E9%83%BD%E5%AE%89%E8%A3%85%E5%9C%A8%E5%85%A8%E5%B1%80%E7%9B%AE%E5%BD%95%20~%2F.pnpm-store%2Fv3%2Ffiles%20%E4%B8%8B%EF%BC%8C%E5%90%8C%E4%B8%80%E7%89%88%E6%9C%AC%E7%9A%84%E5%8C%85%E4%BB%85%E5%AD%98%E5%82%A8%E4%B8%80%E4%BB%BD%E5%86%85%E5%AE%B9%EF%BC%8C%E7%94%9A%E8%87%B3%E4%B8%8D%E5%90%8C%E7%89%88%E6%9C%AC%E7%9A%84%E5%8C%85%E4%B9%9F%E4%BB%85%E5%AD%98%E5%82%A8%20diff,%E5%86%85%E5%AE%B9%E3%80%82%20%E6%AF%8F%E4%B8%AA%E9%A1%B9%E7%9B%AE%E7%9A%84%20node_modules%20%E4%B8%8B%E6%9C%89.pnpm%20%E7%9B%AE%E5%BD%95%E4%BB%A5%E6%89%93%E5%B9%B3%E7%BB%93%E6%9E%84%E7%AE%A1%E7%90%86%E6%AF%8F%E4%B8%AA%E7%89%88%E6%9C%AC%E5%8C%85%E7%9A%84%E6%BA%90%E7%A0%81%E5%86%85%E5%AE%B9%EF%BC%8C%E4%BB%A5%E7%A1%AC%E9%93%BE%E6%8E%A5%E6%96%B9%E5%BC%8F%E6%8C%87%E5%90%91%20pnpm-store%20%E4%B8%AD%E7%9A%84%E6%96%87%E4%BB%B6%E5%9C%B0%E5%9D%80%E3%80%82"
|
|
10
|
+
],
|
|
11
|
+
["你需要知道的几类npm依赖包管理", "https://zhuanlan.zhihu.com/p/29855253"],
|
|
12
|
+
["Pnpm: 最先进的包管理工具", "https://juejin.cn/post/7001794162970361892"],
|
|
13
|
+
["pnpm切换指南", "https://juejin.cn/post/7063740466738511879"]
|
|
14
|
+
], B = {
|
|
15
|
+
category: "Pnpm",
|
|
16
|
+
order: 1,
|
|
17
|
+
list: E
|
|
18
|
+
};
|
|
19
|
+
export {
|
|
20
|
+
B as default
|
|
21
|
+
};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
const e = [
|
|
2
|
+
["vite pwa项目使用", "https://juejin.cn/post/7039258299086143524"],
|
|
3
|
+
["Vite Plugin PWA 的用法和配置", "https://kwaa.dev/vite-plugin-pwa"],
|
|
4
|
+
["通过vite-plugin-pwa配置了解pwa", "https://www.jianshu.com/p/0a07bd528e08"],
|
|
5
|
+
[
|
|
6
|
+
"使用Service Worker做一个PWA离线网页应用",
|
|
7
|
+
"https://www.rrfed.com/2017/10/04/service-worker/"
|
|
8
|
+
],
|
|
9
|
+
[
|
|
10
|
+
"网易云课堂 Service Worker 运用与实践",
|
|
11
|
+
"https://mp.weixin.qq.com/s/3Ep5pJULvP7WHJvVJNDV-g"
|
|
12
|
+
],
|
|
13
|
+
["一文搞懂前端service-worker 技术", "https://www.lmcc.top/articles/73.html"],
|
|
14
|
+
[
|
|
15
|
+
"阮一峰 service-worker",
|
|
16
|
+
"https://www.bookstack.cn/read/webapi-tutorial/docs-service-worker.md"
|
|
17
|
+
],
|
|
18
|
+
[
|
|
19
|
+
"PWA系列 - 我所知道的 Service Worker",
|
|
20
|
+
"https://juejin.cn/post/7102769213147709477"
|
|
21
|
+
],
|
|
22
|
+
[
|
|
23
|
+
"PWA系列 - Workbox插件InjectManifest",
|
|
24
|
+
"https://juejin.cn/post/7103493657092685832"
|
|
25
|
+
],
|
|
26
|
+
[
|
|
27
|
+
"Service Worker 工作原理",
|
|
28
|
+
"https://lavas-project.github.io/pwa-book/chapter04/3-service-worker-dive.html"
|
|
29
|
+
],
|
|
30
|
+
[
|
|
31
|
+
"pwa点击按钮安装,检测是否安装",
|
|
32
|
+
"https://www.csdcb.cn/article/pwaInstall.html"
|
|
33
|
+
],
|
|
34
|
+
[
|
|
35
|
+
"PWA(Progressive Web App)入门系列:安装 Web 应用",
|
|
36
|
+
"https://juejin.cn/post/6844903879683866632"
|
|
37
|
+
]
|
|
38
|
+
], t = {
|
|
39
|
+
category: "pwa学习地址",
|
|
40
|
+
order: 1,
|
|
41
|
+
list: e
|
|
42
|
+
};
|
|
43
|
+
export {
|
|
44
|
+
t as default
|
|
45
|
+
};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
const t = [
|
|
2
|
+
["antd-design", "https://ant.design/docs/react/introduce-cn"],
|
|
3
|
+
["antd-design-gitee", "https://ant-design.gitee.io/components/overview-cn"],
|
|
4
|
+
[
|
|
5
|
+
"React技术揭秘",
|
|
6
|
+
"https://react.iamkasong.com/preparation/idea.html#io%E7%9A%84%E7%93%B6%E9%A2%88"
|
|
7
|
+
],
|
|
8
|
+
["ahooks", "https://ahooks-next.surge.sh/zh-CN/"]
|
|
9
|
+
], e = {
|
|
10
|
+
category: "React",
|
|
11
|
+
order: 1,
|
|
12
|
+
list: t
|
|
13
|
+
};
|
|
14
|
+
export {
|
|
15
|
+
e as default
|
|
16
|
+
};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
const t = [
|
|
2
|
+
["typescript入门教程", "https://ts.xcatliu.com/basics/declaration-files"],
|
|
3
|
+
[
|
|
4
|
+
"深入理解 TypeScript",
|
|
5
|
+
"https://jkchao.github.io/typescript-book-chinese/error/common.html#ts2304"
|
|
6
|
+
],
|
|
7
|
+
["TypeScript 高级用法", "https://www.cnblogs.com/cczlovexw/p/14389259.html"],
|
|
8
|
+
[
|
|
9
|
+
"TypeScript Handbook(中文版)",
|
|
10
|
+
"https://zhongsp.gitbooks.io/typescript-handbook/content/"
|
|
11
|
+
]
|
|
12
|
+
], o = {
|
|
13
|
+
category: "Typescript",
|
|
14
|
+
order: 10,
|
|
15
|
+
list: t
|
|
16
|
+
};
|
|
17
|
+
export {
|
|
18
|
+
o as default
|
|
19
|
+
};
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
const e = [
|
|
2
|
+
["uniapp官网", "https://uniapp.dcloud.net.cn/component/"],
|
|
3
|
+
["应用市场", "https://ext.dcloud.net.cn/"],
|
|
4
|
+
["uView", "https://v1.uviewui.com/"],
|
|
5
|
+
["uni-simple-router", "https://www.hhyang.cn/"],
|
|
6
|
+
[
|
|
7
|
+
"微信小程序开发资源汇总",
|
|
8
|
+
"https://github.com/justjavac/awesome-wechat-weapp?utm_source=gold_browser_extension"
|
|
9
|
+
],
|
|
10
|
+
[
|
|
11
|
+
"小程序跳转",
|
|
12
|
+
"https://uniapp.dcloud.net.cn/api/other/open-miniprogram.html#navigatetominiprogram"
|
|
13
|
+
],
|
|
14
|
+
[
|
|
15
|
+
"uniapp-vue模版手动下载地址",
|
|
16
|
+
"https://gitee.com/dcloud/uni-preset-vue/repository/archive/vite-ts.zip"
|
|
17
|
+
],
|
|
18
|
+
[
|
|
19
|
+
"微信小程序-组件样式隔离",
|
|
20
|
+
"https://developers.weixin.qq.com/miniprogram/dev/framework/custom-component/wxml-wxss.html#%E7%BB%84%E4%BB%B6%E6%A0%B7%E5%BC%8F%E9%9A%94%E7%A6%BB"
|
|
21
|
+
],
|
|
22
|
+
[
|
|
23
|
+
"微信小程序-开放数据加密解密",
|
|
24
|
+
"https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/signature.html"
|
|
25
|
+
],
|
|
26
|
+
[
|
|
27
|
+
"微信小程序-获取用户信息",
|
|
28
|
+
"https://developers.weixin.qq.com/miniprogram/dev/api/open-api/user-info/wx.getUserInfo.html"
|
|
29
|
+
],
|
|
30
|
+
[
|
|
31
|
+
"微信小程序-登录-1",
|
|
32
|
+
"https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/login.html"
|
|
33
|
+
],
|
|
34
|
+
[
|
|
35
|
+
"微信小程序-登录-2",
|
|
36
|
+
"https://developers.weixin.qq.com/miniprogram/dev/api/open-api/login/wx.login.html"
|
|
37
|
+
],
|
|
38
|
+
[
|
|
39
|
+
"微信小程序-用户授权",
|
|
40
|
+
"https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/authorize.html"
|
|
41
|
+
],
|
|
42
|
+
[
|
|
43
|
+
"微信小程序-客服消息",
|
|
44
|
+
"https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/customer-message/customer-message.html"
|
|
45
|
+
],
|
|
46
|
+
[
|
|
47
|
+
"access_token是否过期验证",
|
|
48
|
+
"https://api.weixin.qq.com/cgi-bin/ticket/getticket?access_token=31_voA3FIb5tPTP1_KKKz2u7lp9rM6j4WVP8zwW9x-HqfboNIjGmqQomNptLnF-X5qPoiKBoYj4z0eHmEtRvHO_c02SjTZzWWcsJAzTTj_CMWowLeESzmhv0g8HsdYwj2MAPRYFT3wW0AS2JEXeXQNfAIABUR&type=jsapi"
|
|
49
|
+
],
|
|
50
|
+
[
|
|
51
|
+
"微信小程序-订阅消息",
|
|
52
|
+
"https://developers.weixin.qq.com/miniprogram/dev/framework/open-ability/subscribe-message.html"
|
|
53
|
+
],
|
|
54
|
+
[
|
|
55
|
+
"微信小程序-检查登录是否过期",
|
|
56
|
+
"https://developers.weixin.qq.com/miniprogram/dev/api/open-api/login/wx.checkSession.html"
|
|
57
|
+
]
|
|
58
|
+
], i = {
|
|
59
|
+
category: "小程序+Uniapp",
|
|
60
|
+
order: 13,
|
|
61
|
+
list: e
|
|
62
|
+
};
|
|
63
|
+
export {
|
|
64
|
+
i as default
|
|
65
|
+
};
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
const t = [
|
|
2
|
+
["音频格式转换", "https://ncm.worthsee.com/"],
|
|
3
|
+
["音频剪辑、格式转换", "https://audiotrimmer.com/cn"],
|
|
4
|
+
["音频拼接", "https://cdkm.com/cn/merge-audio#google_vignette"]
|
|
5
|
+
], o = [
|
|
6
|
+
["图片修复", "https://zh.pixfix.com/"],
|
|
7
|
+
["网页PS", "https://ps.gaoding.com/#/"],
|
|
8
|
+
["tinypng图片压缩", "https://tinypng.com/"],
|
|
9
|
+
["图片压缩改大小", "https://www.yasuotu.com/gif/"],
|
|
10
|
+
["logo制作地址", "https://app.logo.com/business-name"],
|
|
11
|
+
["favicon图标在线生成", "http://favicon.madjs.com/"],
|
|
12
|
+
["图片转base64", "https://www.css-js.com/tools/base64.html"],
|
|
13
|
+
["图片文字提取", "https://web.baimiaoapp.com/"],
|
|
14
|
+
["webp转换相关", "https://ezgif.com/video-to-webp"]
|
|
15
|
+
], s = [
|
|
16
|
+
["PDF转换器1", "http://www.pdfdo.com/doc-to-pdf.aspx"],
|
|
17
|
+
["PDF转换器2", "https://www.alltoall.net/"],
|
|
18
|
+
["图片合成PDF", "https://www.zhihuilib.com/pdf/image-merge-pdf"],
|
|
19
|
+
[
|
|
20
|
+
"图片合成PDF(支持超10张图)",
|
|
21
|
+
"https://cdkm.com/cn/merge-jpg-to-pdf#google_vignette"
|
|
22
|
+
],
|
|
23
|
+
["PDF解密", "https://smallpdf.com/cn/unlock-pdf"]
|
|
24
|
+
], p = [
|
|
25
|
+
...o,
|
|
26
|
+
...s,
|
|
27
|
+
...t,
|
|
28
|
+
["Dns检测|Dns查询 - 站长工具", "https://tool.chinaz.com/dns"],
|
|
29
|
+
["json在线解析", "https://www.json.cn/"],
|
|
30
|
+
["视频转gif", "https://www.shipinyasuo.com/videoToGif"],
|
|
31
|
+
["网站导航", "http://sakura.ysepan.com/"],
|
|
32
|
+
["JS加密混淆", "https://tool.chinaz.com/Tools/CssFormat.aspx"],
|
|
33
|
+
["颜色汇集地址", "https://www.5tu.cn/colors/yansebiao.html"],
|
|
34
|
+
["echarts示例1", "https://www.makeapie.cn/echarts"],
|
|
35
|
+
["echarts示例2", "https://madeapie.com/#/"],
|
|
36
|
+
["echarts示例3", "http://ppchart.com/#/"],
|
|
37
|
+
["数据转typescript类型", "https://transform.tools/json-to-typescript"],
|
|
38
|
+
["webstorm激活网站", "https://3.jetbra.in/"],
|
|
39
|
+
["前端书籍收集", "https://www.bookstack.cn/"],
|
|
40
|
+
["磁力链接搜索", "https://1ci.li/"],
|
|
41
|
+
["公钥私钥转换", "http://web.chacuo.net/netrsakeypair"],
|
|
42
|
+
["福利吧", "https://fuliba2023.net/"],
|
|
43
|
+
["免费资源导航", "https://www.thosefree.com/"],
|
|
44
|
+
["公众号音频提取", "https://tool.wpjam.com/mp_audio/"],
|
|
45
|
+
["https签名", "https://www.ihuandu.com/ziqian/"],
|
|
46
|
+
["autohotkey", "https://wyagd001.github.io/zh-cn/docs/Hotkeys.htm"],
|
|
47
|
+
[
|
|
48
|
+
"顺丰快递查询",
|
|
49
|
+
"https://www.sf-express.com/we/ow/chn/sc/waybill/waybill-detail"
|
|
50
|
+
],
|
|
51
|
+
[
|
|
52
|
+
"模拟api接口",
|
|
53
|
+
"https://api.apiopen.top/swagger/index.html#/%E5%BC%80%E6%94%BE%E6%8E%A5%E5%8F%A3/get_getImages"
|
|
54
|
+
],
|
|
55
|
+
[
|
|
56
|
+
"gpt注册",
|
|
57
|
+
"https://chatgptzh.github.io/how-to-register-a-chatgpt-account-in-china/#more"
|
|
58
|
+
],
|
|
59
|
+
["gpt短信接收", "https://sms-activate.org/cn"]
|
|
60
|
+
], c = {
|
|
61
|
+
category: "实用",
|
|
62
|
+
order: 15,
|
|
63
|
+
list: p
|
|
64
|
+
};
|
|
65
|
+
export {
|
|
66
|
+
c as default
|
|
67
|
+
};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { getModulesDefaultContent as n, arrSort as s, cloneDeep as c } from "@vft/utils";
|
|
2
|
+
import { NAVIGATION_URLS as i } from "./index.js";
|
|
3
|
+
function f(o) {
|
|
4
|
+
const r = [];
|
|
5
|
+
if (o != null && o.length)
|
|
6
|
+
for (const t of o) {
|
|
7
|
+
const e = { title: t[0], path: t[1] };
|
|
8
|
+
t[2] && Object.assign(e, { icon: t[2] }), t[3] && Object.assign(e, { roles: t[3] }), r.push(e);
|
|
9
|
+
}
|
|
10
|
+
return r;
|
|
11
|
+
}
|
|
12
|
+
function a(o) {
|
|
13
|
+
const r = n(o);
|
|
14
|
+
return r.forEach((t) => (t.list = f(t.list), t)), s(r, "order");
|
|
15
|
+
}
|
|
16
|
+
const g = () => {
|
|
17
|
+
const o = [], r = c(i);
|
|
18
|
+
for (const t of r)
|
|
19
|
+
for (const e of t.list)
|
|
20
|
+
e.category = [t.category], o.push({ ...e, sourceType: "url" });
|
|
21
|
+
return o;
|
|
22
|
+
};
|
|
23
|
+
export {
|
|
24
|
+
f as addPathTitle,
|
|
25
|
+
g as getAllUrlList,
|
|
26
|
+
a as getList
|
|
27
|
+
};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
const t = [
|
|
2
|
+
["vite官网", "https://cn.vitejs.dev/config/"],
|
|
3
|
+
[
|
|
4
|
+
"最新vite源码分析,vite到底为什么比webpack快",
|
|
5
|
+
"https://segmentfault.com/a/1190000038324271"
|
|
6
|
+
],
|
|
7
|
+
[
|
|
8
|
+
"Vite 和Webpack 的核心差异",
|
|
9
|
+
"https://blog.csdn.net/weixin_40906515/article/details/114313102"
|
|
10
|
+
],
|
|
11
|
+
[
|
|
12
|
+
"webpack和vite的比较",
|
|
13
|
+
"https://blog.csdn.net/weixin_42991716/article/details/115803348"
|
|
14
|
+
],
|
|
15
|
+
["vite为什么快", "https://juejin.cn/post/6969364344018567182"],
|
|
16
|
+
["Rollup打包项目教程", "https://juejin.cn/post/7145090564801691684"]
|
|
17
|
+
], e = {
|
|
18
|
+
category: "Vite",
|
|
19
|
+
order: 10,
|
|
20
|
+
list: t
|
|
21
|
+
};
|
|
22
|
+
export {
|
|
23
|
+
e as default
|
|
24
|
+
};
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
const t = [
|
|
2
|
+
[
|
|
3
|
+
"vue官方中文地址",
|
|
4
|
+
"https://cn.vuejs.org/guide/introduction.html",
|
|
5
|
+
"ico-logos:vue"
|
|
6
|
+
],
|
|
7
|
+
[
|
|
8
|
+
"vue-route官方中文地址",
|
|
9
|
+
"https://router.vuejs.org/zh/introduction.html",
|
|
10
|
+
"ico-logos:vue"
|
|
11
|
+
],
|
|
12
|
+
[
|
|
13
|
+
"vueuse中文地址",
|
|
14
|
+
"http://www.vueusejs.com/functions.html",
|
|
15
|
+
"ico-logos:vueuse"
|
|
16
|
+
],
|
|
17
|
+
["vueuse官方地址", "https://vueuse.org/functions.html", "ico-logos:vueuse"],
|
|
18
|
+
[
|
|
19
|
+
"pinia官方地址",
|
|
20
|
+
"https://pinia.vuejs.org/introduction.html",
|
|
21
|
+
"ico-logos:pinia"
|
|
22
|
+
],
|
|
23
|
+
["Vue SFC Playground", "https://sfc.vuejs.org"],
|
|
24
|
+
["Vue Use Playground", "https://play.vueuse.org/"],
|
|
25
|
+
[
|
|
26
|
+
"Vue源码解析",
|
|
27
|
+
"https://ustbhuangyi.github.io/vue-analysis/v2/prepare/flow.html#%E4%B8%BA%E4%BB%80%E4%B9%88%E7%94%A8-flow"
|
|
28
|
+
],
|
|
29
|
+
["vant4", "https://vant-contrib.gitee.io/vant/#/zh-CN/checkbox"],
|
|
30
|
+
["腾讯首页", "https://tdesign.tencent.com/"],
|
|
31
|
+
[
|
|
32
|
+
"iview Admin Pro 后台",
|
|
33
|
+
"https://adminpro.iviewui.com/login?redirect=%2Fdashboard%2Fconsole"
|
|
34
|
+
],
|
|
35
|
+
[
|
|
36
|
+
"material 后台",
|
|
37
|
+
"https://demos.creative-tim.com/material-dashboard/examples/dashboard.html"
|
|
38
|
+
],
|
|
39
|
+
["VARLET", "https://varlet.gitee.io/varlet-ui/#/zh-CN/index"],
|
|
40
|
+
["quasar", "https://quasar.dev/vue-components/table"],
|
|
41
|
+
["vueadminwork", "http://a.vueadminwork.com/#/login?redirect=/index/home"],
|
|
42
|
+
["soybean", "https://soybean.pro/#/login?redirect=/component/table"],
|
|
43
|
+
["vue-pure-admin", "https://yiming_chang.gitee.io/vue-pure-admin/#/login"],
|
|
44
|
+
["vite-vue3-lowcode", "https://github.com/buqiyuan/vite-vue3-lowcode"],
|
|
45
|
+
["vuetify", "https://vuetify.cn/zh-Hans/components/treeview/"],
|
|
46
|
+
["quasar", "https://quasar.dev/"],
|
|
47
|
+
["ionic", "https://ionicframework.com/docs/api/item"],
|
|
48
|
+
["primevue", "https://primevue.org/dataview"],
|
|
49
|
+
["vuestic", "https://vuestic.dev/zh/ui-elements/data-table"],
|
|
50
|
+
["cube-ui", "https://didi.github.io/cube-ui/#/zh-CN/docs/scroll"],
|
|
51
|
+
["vux", "https://doc.vux.li/zh-CN/components/x-table.html"],
|
|
52
|
+
["arco.design", "https://arco.design/vue/component/table#scroll"],
|
|
53
|
+
["element-plus", "https://element-plus.org/zh-CN/component/button.html"],
|
|
54
|
+
["antdv", "https://www.antdv.com/docs/vue/customize-theme-cn/"],
|
|
55
|
+
["naiveui", "https://www.naiveui.com/zh-CN/light/docs/installation"],
|
|
56
|
+
["vben", "https://vben.vvbin.cn/#/login?redirect=/dashboard"]
|
|
57
|
+
], e = {
|
|
58
|
+
category: "Vue",
|
|
59
|
+
order: 1,
|
|
60
|
+
list: t
|
|
61
|
+
};
|
|
62
|
+
export {
|
|
63
|
+
e as default
|
|
64
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
const e = [
|
|
2
|
+
["webpack官网", "https://v4.webpack.js.org/loaders/file-loader/"],
|
|
3
|
+
[
|
|
4
|
+
"手摸手,带你用合理的姿势使用webpack4",
|
|
5
|
+
"https://segmentfault.com/a/1190000015919928"
|
|
6
|
+
]
|
|
7
|
+
], a = {
|
|
8
|
+
category: "Webpack",
|
|
9
|
+
order: 10,
|
|
10
|
+
list: e
|
|
11
|
+
};
|
|
12
|
+
export {
|
|
13
|
+
a as default
|
|
14
|
+
};
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
const e = [
|
|
2
|
+
{
|
|
3
|
+
label: "Bing",
|
|
4
|
+
value: "https://cn.bing.com/search?q="
|
|
5
|
+
},
|
|
6
|
+
{
|
|
7
|
+
label: "Google",
|
|
8
|
+
value: "https://www.google.com/search?q="
|
|
9
|
+
},
|
|
10
|
+
{
|
|
11
|
+
label: "Baidu",
|
|
12
|
+
value: "https://www.baidu.com/s?wd="
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
label: "MDN",
|
|
16
|
+
value: "https://developer.mozilla.org/zh-CN/search?q="
|
|
17
|
+
// 搜索链接的前面部分
|
|
18
|
+
}
|
|
19
|
+
];
|
|
20
|
+
export {
|
|
21
|
+
e as THRID_PARTY_SEARCH_LIST
|
|
22
|
+
};
|
package/dist/es/index.js
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { THRID_PARTY_SEARCH_LIST as o } from "./constants/third-party-search.js";
|
|
2
|
+
import { NAVIGATION_URLS as f } from "./constants/navigation-url/index.js";
|
|
3
|
+
import { RsaEncrypt as p, rsa as a } from "./utils/rsa.js";
|
|
4
|
+
import { getGlobalConfig as x } from "./utils/helper.js";
|
|
5
|
+
import { addPathTitle as R, getAllUrlList as T, getList as g } from "./constants/navigation-url/utils.js";
|
|
6
|
+
export {
|
|
7
|
+
f as NAVIGATION_URLS,
|
|
8
|
+
p as RsaEncrypt,
|
|
9
|
+
o as THRID_PARTY_SEARCH_LIST,
|
|
10
|
+
R as addPathTitle,
|
|
11
|
+
T as getAllUrlList,
|
|
12
|
+
x as getGlobalConfig,
|
|
13
|
+
g as getList,
|
|
14
|
+
a as rsa
|
|
15
|
+
};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { getGlobalConfig as e } from "@vft/utils";
|
|
2
|
+
var t = { BASE_URL: "/", MODE: "production", DEV: !1, PROD: !0, SSR: !1 };
|
|
3
|
+
const l = () => {
|
|
4
|
+
const { VITE_GLOB_API_PREFIX: o } = e(t);
|
|
5
|
+
return {
|
|
6
|
+
apiUrl: o
|
|
7
|
+
};
|
|
8
|
+
};
|
|
9
|
+
export {
|
|
10
|
+
l as getGlobalConfig
|
|
11
|
+
};
|