mirror of
https://github.com/XiaoDaiGua-Ray/ray-template.git
synced 2025-04-05 19:42:07 +08:00
update how svg is used
This commit is contained in:
parent
e14d42d75c
commit
458a5f2b1d
@ -1,2 +1,4 @@
|
||||
#开发环境
|
||||
NODE_ENV = 'development'
|
||||
NODE_ENV = 'development'
|
||||
|
||||
VITE_APP_LI_DAO_URL = 'api/'
|
@ -1,2 +1,4 @@
|
||||
#生产环境
|
||||
NODE_ENV = 'production'
|
||||
NODE_ENV = 'production'
|
||||
|
||||
VITE_APP_LI_DAO_URL = 'api/'
|
@ -1,2 +1,4 @@
|
||||
#测试环境
|
||||
NODE_ENV = 'test'
|
||||
NODE_ENV = 'test'
|
||||
|
||||
VITE_APP_LI_DAO_URL = 'api/'
|
23
.gitignore
vendored
23
.gitignore
vendored
@ -1,24 +1 @@
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
pnpm-debug.log*
|
||||
lerna-debug.log*
|
||||
|
||||
node_modules
|
||||
dist
|
||||
dist-ssr
|
||||
*.local
|
||||
|
||||
# Editor directories and files
|
||||
.vscode/*
|
||||
!.vscode/extensions.json
|
||||
.idea
|
||||
.DS_Store
|
||||
*.suo
|
||||
*.ntvs*
|
||||
*.njsproj
|
||||
*.sln
|
||||
*.sw?
|
||||
|
@ -23,11 +23,10 @@
|
||||
- [vue-i18n](https://kazupon.github.io/vue-i18n/zh/introduction.html) `国际化`
|
||||
- [scrollreveal.js](https://scrollrevealjs.org/) `滚动加载动画`
|
||||
- [crypto-js](https://github.com/brix/crypto-js) `加密`
|
||||
- [vite-svg-loader](https://github.com/jpkleemans/vite-svg-loader) `svg组件化`
|
||||
|
||||
## 组件说明
|
||||
|
||||
`RayIcon` 结合插件 `vite-plugin-svg-icons` 使用, 可以直接在项目中按照规范使用 `svg` 做为图标
|
||||
|
||||
`RayScrollReveal` 基于 `ScrollReveal` 进行开发, 可以实现滚动加载动画
|
||||
|
||||
`RayTransitionComponent` 路由过渡动画组件, 可根据自己喜好更改 `src/styles/animate.scss` 文件过渡效果
|
||||
|
1
auto-imports.d.ts
vendored
1
auto-imports.d.ts
vendored
@ -167,6 +167,7 @@ declare global {
|
||||
const useFullscreen: typeof import('@vueuse/core')['useFullscreen']
|
||||
const useGamepad: typeof import('@vueuse/core')['useGamepad']
|
||||
const useGeolocation: typeof import('@vueuse/core')['useGeolocation']
|
||||
const useI18n: typeof import('vue-i18n')['useI18n']
|
||||
const useIdle: typeof import('@vueuse/core')['useIdle']
|
||||
const useImage: typeof import('@vueuse/core')['useImage']
|
||||
const useInfiniteScroll: typeof import('@vueuse/core')['useInfiniteScroll']
|
||||
|
BIN
dist/.DS_Store
vendored
Normal file
BIN
dist/.DS_Store
vendored
Normal file
Binary file not shown.
30
dist/production-dist/assets/index.80919b2b.js
vendored
Normal file
30
dist/production-dist/assets/index.80919b2b.js
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
dist/production-dist/assets/index.80919b2b.js.gz
vendored
Normal file
BIN
dist/production-dist/assets/index.80919b2b.js.gz
vendored
Normal file
Binary file not shown.
1
dist/production-dist/assets/index.ed63c42d.css
vendored
Normal file
1
dist/production-dist/assets/index.ed63c42d.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
.fade-enter-active,.fade-leave-active{-webkit-transition:opacity .28s var(--r-bezier);-o-transition:opacity .28s var(--r-bezier);transition:opacity .28s var(--r-bezier)}.fade-enter-from,.fade-leave-active{opacity:0;-webkit-transition:all .5s var(--r-bezier);-o-transition:all .5s var(--r-bezier);transition:all .5s var(--r-bezier)}.fade-transform-leave-active,.fade-transform-enter-active{-webkit-transition:all .5s var(--r-bezier);-o-transition:all .5s var(--r-bezier);transition:all .5s var(--r-bezier)}.fade-transform-enter-from{opacity:0;-webkit-transform:translateX(-.8rem);-ms-transform:translateX(-.8rem);transform:translate(-.8rem)}.fade-transform-leave-to{opacity:0;-webkit-transform:translateX(.8rem);-ms-transform:translateX(.8rem);transform:translate(.8rem)}body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td{margin:0;padding:0}ul,ol,li{list-style:none}fieldset,img{border:0;vertical-align:middle}body{font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
|
BIN
dist/production-dist/assets/index.ed63c42d.css.gz
vendored
Normal file
BIN
dist/production-dist/assets/index.ed63c42d.css.gz
vendored
Normal file
Binary file not shown.
15
dist/production-dist/index.html
vendored
Normal file
15
dist/production-dist/index.html
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/ray.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>ray template</title>
|
||||
<script type="module" crossorigin src="/assets/index.80919b2b.js"></script>
|
||||
<link rel="stylesheet" href="/assets/index.ed63c42d.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
|
||||
</body>
|
||||
</html>
|
14
dist/production-dist/ray.svg
vendored
Normal file
14
dist/production-dist/ray.svg
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
<svg t="1659811416176" class="icon" viewBox="0 0 1147 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="10290" width="64" height="64">
|
||||
<path d="M472.342857 968.685714c-73.828571 0-130.171429-12-172.114286-36.571428-38.742857-22.742857-84.914286-68.685714-84.914285-158.057143-2.971429-141.942857 109.714286-259.542857 251.657143-262.514286 141.942857-2.971429 259.542857 109.714286 262.514285 251.657143 0.114286 3.657143 0.114286 7.2 0 10.857143 0 89.371429-46.171429 135.2-84.914285 158.057143-41.942857 24.685714-98.285714 36.571429-172.228572 36.571428z" fill="#25467A" p-id="10291"></path>
|
||||
<path d="M766.742857 968.685714c-73.942857 0-130.171429-12-172.228571-36.571428-38.742857-22.742857-84.914286-68.685714-84.914286-158.057143 2.857143-141.942857 120.228571-254.742857 262.285714-252 137.942857 2.742857 249.142857 113.942857 252 252 0 89.371429-46.171429 135.2-84.914285 158.057143-42.057143 24.685714-98.4 36.571429-172.228572 36.571428z" fill="#25467A" p-id="10292"></path>
|
||||
<path d="M512 940.571429c-153.257143 0-268.457143-24-352.457143-73.257143-50.971429-29.942857-90.514286-69.714286-117.142857-118.057143C14.285714 698.285714 0 637.028571 0 567.085714c0.114286-282.857143 229.6-512 512.457143-511.885714 205.6 0.114286 391.2 123.2 471.314286 312.571429 26.742857 63.085714 40.342857 130.857143 40.228571 199.314285 0 69.828571-14.285714 131.2-42.4 182.171429-26.742857 48.342857-66.171429 88.114286-117.142857 118.057143C780.571429 916.685714 665.257143 940.571429 512 940.571429z" fill="#25467A" p-id="10293"></path>
|
||||
<path d="M48 567.085714c0-256.228571 207.771429-464 464-464s464 207.771429 464 464S768.228571 892.571429 512 892.571429 48 823.314286 48 567.085714z" fill="#FFF3E0" p-id="10294"></path>
|
||||
<path d="M472.342857 943.542857c-69.257143 0-121.371429-10.857143-159.428571-33.142857-48.114286-28.228571-72.457143-74.171429-72.457143-136.342857 0-127.885714 104-232 232-232s232 104 232 232c0 62.171429-24.342857 108.114286-72.571429 136.342857-38.057143 22.4-90.171429 33.142857-159.542857 33.142857z" fill="#25467A" p-id="10295"></path>
|
||||
<path d="M263.314286 774.057143c0-115.428571 93.485714-209.142857 209.028571-209.142857 115.428571 0 209.142857 93.485714 209.142857 209.028571v0.114286c0 115.428571-93.6 146.628571-209.142857 146.628571s-209.028571-31.085714-209.028571-146.628571z" fill="#FFF3E0" p-id="10296"></path>
|
||||
<path d="M472.342857 652.8c-73.371429 0-132.8 51.771429-132.8 115.657143 0 18.514286 5.028571 33.142857 13.942857 44.571428-1.714286 10.971429-2.628571 22.057143-2.742857 33.142858 0 32.8 9.942857 38.971429 22.285714 38.971428s22.285714-6.285714 22.285715-38.971428c0-2.057143 0-4.228571-0.114286-6.285715 21.714286 7.085714 48.457143 9.714286 77.142857 9.714286 73.371429 0 132.8-17.257143 132.8-81.142857s-59.428571-115.657143-132.8-115.657143z" fill="#388E3C" p-id="10297"></path>
|
||||
<path d="M766.742857 943.542857c-69.257143 0-121.371429-10.857143-159.428571-33.142857-48.114286-28.228571-72.571429-74.171429-72.571429-136.342857 0-127.885714 104.114286-232 232-232s232 104 232 232c0 62.171429-24.342857 108.114286-72.571428 136.342857-38.057143 22.4-90.171429 33.142857-159.428572 33.142857z" fill="#25467A" p-id="10298"></path>
|
||||
<path d="M557.6 774.057143c0-115.428571 93.6-209.142857 209.142857-209.142857s209.142857 93.6 209.142857 209.142857c0 115.428571-93.6 146.628571-209.142857 146.628571s-209.142857-31.085714-209.142857-146.628571z" fill="#FFF3E0" p-id="10299"></path>
|
||||
<path d="M766.742857 652.8c-73.371429 0-132.8 51.771429-132.8 115.657143 0 18.514286 5.028571 33.142857 13.942857 44.571428-1.714286 10.971429-2.628571 22.057143-2.742857 33.142858 0 32.8 9.942857 38.971429 22.285714 38.971428s22.285714-6.285714 22.285715-38.971428c0-2.057143 0-4.228571-0.114286-6.285715 21.714286 7.085714 48.342857 9.714286 77.142857 9.714286 73.371429 0 132.8-17.257143 132.8-81.142857S840 652.8 766.742857 652.8z" fill="#FBC02D" p-id="10300"></path>
|
||||
<path d="M401.6 486.857143c-38.171429 0-69.142857-30.971429-69.142857-69.257143 0-7.657143 6.171429-13.828571 13.828571-13.828571 7.314286 0 13.485714 5.714286 13.828572 13.028571v0.8c-0.342857 22.971429 17.942857 41.828571 40.8 42.171429s41.828571-17.942857 42.171428-40.8v-1.371429c-0.228571-7.657143 5.828571-14.057143 13.371429-14.285714s14.057143 5.828571 14.285714 13.371428v0.8c0.114286 38.4-30.857143 69.371429-69.142857 69.371429zM221.714286 306.971429c-0.342857 22.971429 17.942857 41.828571 40.8 42.171428s41.828571-17.942857 42.171428-40.8v-1.371428c0.342857-22.971429-17.942857-41.828571-40.8-42.171429-22.971429-0.342857-41.828571 17.942857-42.171428 40.8v1.371429zM498.514286 306.971429c-0.342857 22.971429 17.828571 41.828571 40.8 42.285714 22.971429 0.342857 41.828571-17.828571 42.285714-40.8v-1.485714c0.342857-22.971429-17.942857-41.828571-40.8-42.171429-22.971429-0.342857-41.828571 17.942857-42.171429 40.8-0.114286 0.457143-0.114286 0.914286-0.114285 1.371429z" fill="#25467A" p-id="10301"></path>
|
||||
<path d="M207.885714 376.228571h-55.314285c-15.314286-0.342857-27.885714 11.771429-28.228572 27.085715-0.342857 15.314286 11.771429 27.885714 27.085714 28.228571H208c15.314286 0.342857 27.885714-11.771429 28.228571-27.085714 0.342857-15.314286-11.771429-27.885714-27.085714-28.228572h-1.257143z m442.857143 0H595.428571c-15.314286 0-27.657143 12.342857-27.657142 27.657143s12.342857 27.657143 27.657142 27.657143h55.314286c15.314286 0.342857 27.885714-11.771429 28.228572-27.085714 0.342857-15.314286-11.771429-27.885714-27.085715-28.228572h-1.142857z" fill="#F8BBD0" p-id="10302"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 5.4 KiB |
189
dist/test-dist/assets/index.4e650cca.js
vendored
Normal file
189
dist/test-dist/assets/index.4e650cca.js
vendored
Normal file
File diff suppressed because one or more lines are too long
BIN
dist/test-dist/assets/index.4e650cca.js.gz
vendored
Normal file
BIN
dist/test-dist/assets/index.4e650cca.js.gz
vendored
Normal file
Binary file not shown.
1
dist/test-dist/assets/index.4e650cca.js.map
vendored
Normal file
1
dist/test-dist/assets/index.4e650cca.js.map
vendored
Normal file
@ -0,0 +1 @@
|
||||
{"version":3,"file":"index.4e650cca.js","sources":["../../../src/components/DraggableComponent/index.vue"],"sourcesContent":["<script setup lang=\"ts\">\nconst el = ref<HTMLElement | null>(null)\n\nconst { x, y, style } = useDraggable(el, {\n initialValue: { x: 630, y: 14 },\n})\n</script>\n\n<template>\n <div class=\"draggable-component\" ref=\"el\" :style=\"style\">\n Drag me! I am at {{ x }}, {{ y }}\n </div>\n</template>\n\n<style lang=\"scss\" scope>\n.draggable-component {\n position: fixed;\n padding: 8px 16px;\n border: 1px solid rgba(156, 163, 175, 0.3);\n cursor: move;\n z-index: 10;\n}\n</style>\n"],"names":["el","ref","x","y","style","useDraggable"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;y/oBACA,MAAAA,EAAAC,GAAA,IAAA,EAEA,CAAA,EAAAC,EAAA,EAAAC,EAAA,MAAAC,CAAA,EAAAC,GAAAL,EAAA,CAAyC,aAAA,CAAA,EAAA,IAAA,EAAA,EAAA,CACT,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
1
dist/test-dist/assets/index.b0ae8d92.css
vendored
Normal file
1
dist/test-dist/assets/index.b0ae8d92.css
vendored
Normal file
@ -0,0 +1 @@
|
||||
.fade-enter-active,.fade-leave-active{-webkit-transition:opacity .28s var(--r-bezier);-o-transition:opacity .28s var(--r-bezier);transition:opacity .28s var(--r-bezier)}.fade-enter-from,.fade-leave-active{opacity:0;-webkit-transition:all .5s var(--r-bezier);-o-transition:all .5s var(--r-bezier);transition:all .5s var(--r-bezier)}.fade-transform-leave-active,.fade-transform-enter-active{-webkit-transition:all .5s var(--r-bezier);-o-transition:all .5s var(--r-bezier);transition:all .5s var(--r-bezier)}.fade-transform-enter-from{opacity:0;-webkit-transform:translateX(-.8rem);-ms-transform:translateX(-.8rem);transform:translate(-.8rem)}.fade-transform-leave-to{opacity:0;-webkit-transform:translateX(.8rem);-ms-transform:translateX(.8rem);transform:translate(.8rem)}body,h1,h2,h3,h4,h5,h6,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td{margin:0;padding:0}ul,ol,li{list-style:none}fieldset,img{border:0;vertical-align:middle}body{font-family:Inter,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.draggable-component{position:fixed;padding:.21333rem .42667rem;border:.02667rem solid rgba(156,163,175,.3);cursor:move;z-index:10}
|
BIN
dist/test-dist/assets/index.b0ae8d92.css.gz
vendored
Normal file
BIN
dist/test-dist/assets/index.b0ae8d92.css.gz
vendored
Normal file
Binary file not shown.
15
dist/test-dist/index.html
vendored
Normal file
15
dist/test-dist/index.html
vendored
Normal file
@ -0,0 +1,15 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<link rel="icon" type="image/svg+xml" href="/ray.svg" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>ray template</title>
|
||||
<script type="module" crossorigin src="/assets/index.4e650cca.js"></script>
|
||||
<link rel="stylesheet" href="/assets/index.b0ae8d92.css">
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
|
||||
</body>
|
||||
</html>
|
14
dist/test-dist/ray.svg
vendored
Normal file
14
dist/test-dist/ray.svg
vendored
Normal file
@ -0,0 +1,14 @@
|
||||
<svg t="1659811416176" class="icon" viewBox="0 0 1147 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="10290" width="64" height="64">
|
||||
<path d="M472.342857 968.685714c-73.828571 0-130.171429-12-172.114286-36.571428-38.742857-22.742857-84.914286-68.685714-84.914285-158.057143-2.971429-141.942857 109.714286-259.542857 251.657143-262.514286 141.942857-2.971429 259.542857 109.714286 262.514285 251.657143 0.114286 3.657143 0.114286 7.2 0 10.857143 0 89.371429-46.171429 135.2-84.914285 158.057143-41.942857 24.685714-98.285714 36.571429-172.228572 36.571428z" fill="#25467A" p-id="10291"></path>
|
||||
<path d="M766.742857 968.685714c-73.942857 0-130.171429-12-172.228571-36.571428-38.742857-22.742857-84.914286-68.685714-84.914286-158.057143 2.857143-141.942857 120.228571-254.742857 262.285714-252 137.942857 2.742857 249.142857 113.942857 252 252 0 89.371429-46.171429 135.2-84.914285 158.057143-42.057143 24.685714-98.4 36.571429-172.228572 36.571428z" fill="#25467A" p-id="10292"></path>
|
||||
<path d="M512 940.571429c-153.257143 0-268.457143-24-352.457143-73.257143-50.971429-29.942857-90.514286-69.714286-117.142857-118.057143C14.285714 698.285714 0 637.028571 0 567.085714c0.114286-282.857143 229.6-512 512.457143-511.885714 205.6 0.114286 391.2 123.2 471.314286 312.571429 26.742857 63.085714 40.342857 130.857143 40.228571 199.314285 0 69.828571-14.285714 131.2-42.4 182.171429-26.742857 48.342857-66.171429 88.114286-117.142857 118.057143C780.571429 916.685714 665.257143 940.571429 512 940.571429z" fill="#25467A" p-id="10293"></path>
|
||||
<path d="M48 567.085714c0-256.228571 207.771429-464 464-464s464 207.771429 464 464S768.228571 892.571429 512 892.571429 48 823.314286 48 567.085714z" fill="#FFF3E0" p-id="10294"></path>
|
||||
<path d="M472.342857 943.542857c-69.257143 0-121.371429-10.857143-159.428571-33.142857-48.114286-28.228571-72.457143-74.171429-72.457143-136.342857 0-127.885714 104-232 232-232s232 104 232 232c0 62.171429-24.342857 108.114286-72.571429 136.342857-38.057143 22.4-90.171429 33.142857-159.542857 33.142857z" fill="#25467A" p-id="10295"></path>
|
||||
<path d="M263.314286 774.057143c0-115.428571 93.485714-209.142857 209.028571-209.142857 115.428571 0 209.142857 93.485714 209.142857 209.028571v0.114286c0 115.428571-93.6 146.628571-209.142857 146.628571s-209.028571-31.085714-209.028571-146.628571z" fill="#FFF3E0" p-id="10296"></path>
|
||||
<path d="M472.342857 652.8c-73.371429 0-132.8 51.771429-132.8 115.657143 0 18.514286 5.028571 33.142857 13.942857 44.571428-1.714286 10.971429-2.628571 22.057143-2.742857 33.142858 0 32.8 9.942857 38.971429 22.285714 38.971428s22.285714-6.285714 22.285715-38.971428c0-2.057143 0-4.228571-0.114286-6.285715 21.714286 7.085714 48.457143 9.714286 77.142857 9.714286 73.371429 0 132.8-17.257143 132.8-81.142857s-59.428571-115.657143-132.8-115.657143z" fill="#388E3C" p-id="10297"></path>
|
||||
<path d="M766.742857 943.542857c-69.257143 0-121.371429-10.857143-159.428571-33.142857-48.114286-28.228571-72.571429-74.171429-72.571429-136.342857 0-127.885714 104.114286-232 232-232s232 104 232 232c0 62.171429-24.342857 108.114286-72.571428 136.342857-38.057143 22.4-90.171429 33.142857-159.428572 33.142857z" fill="#25467A" p-id="10298"></path>
|
||||
<path d="M557.6 774.057143c0-115.428571 93.6-209.142857 209.142857-209.142857s209.142857 93.6 209.142857 209.142857c0 115.428571-93.6 146.628571-209.142857 146.628571s-209.142857-31.085714-209.142857-146.628571z" fill="#FFF3E0" p-id="10299"></path>
|
||||
<path d="M766.742857 652.8c-73.371429 0-132.8 51.771429-132.8 115.657143 0 18.514286 5.028571 33.142857 13.942857 44.571428-1.714286 10.971429-2.628571 22.057143-2.742857 33.142858 0 32.8 9.942857 38.971429 22.285714 38.971428s22.285714-6.285714 22.285715-38.971428c0-2.057143 0-4.228571-0.114286-6.285715 21.714286 7.085714 48.342857 9.714286 77.142857 9.714286 73.371429 0 132.8-17.257143 132.8-81.142857S840 652.8 766.742857 652.8z" fill="#FBC02D" p-id="10300"></path>
|
||||
<path d="M401.6 486.857143c-38.171429 0-69.142857-30.971429-69.142857-69.257143 0-7.657143 6.171429-13.828571 13.828571-13.828571 7.314286 0 13.485714 5.714286 13.828572 13.028571v0.8c-0.342857 22.971429 17.942857 41.828571 40.8 42.171429s41.828571-17.942857 42.171428-40.8v-1.371429c-0.228571-7.657143 5.828571-14.057143 13.371429-14.285714s14.057143 5.828571 14.285714 13.371428v0.8c0.114286 38.4-30.857143 69.371429-69.142857 69.371429zM221.714286 306.971429c-0.342857 22.971429 17.942857 41.828571 40.8 42.171428s41.828571-17.942857 42.171428-40.8v-1.371428c0.342857-22.971429-17.942857-41.828571-40.8-42.171429-22.971429-0.342857-41.828571 17.942857-42.171428 40.8v1.371429zM498.514286 306.971429c-0.342857 22.971429 17.828571 41.828571 40.8 42.285714 22.971429 0.342857 41.828571-17.828571 42.285714-40.8v-1.485714c0.342857-22.971429-17.942857-41.828571-40.8-42.171429-22.971429-0.342857-41.828571 17.942857-42.171429 40.8-0.114286 0.457143-0.114286 0.914286-0.114285 1.371429z" fill="#25467A" p-id="10301"></path>
|
||||
<path d="M207.885714 376.228571h-55.314285c-15.314286-0.342857-27.885714 11.771429-28.228572 27.085715-0.342857 15.314286 11.771429 27.885714 27.085714 28.228571H208c15.314286 0.342857 27.885714-11.771429 28.228571-27.085714 0.342857-15.314286-11.771429-27.885714-27.085714-28.228572h-1.257143z m442.857143 0H595.428571c-15.314286 0-27.657143 12.342857-27.657142 27.657143s12.342857 27.657143 27.657142 27.657143h55.314286c15.314286 0.342857 27.885714-11.771429 28.228572-27.085714 0.342857-15.314286-11.771429-27.885714-27.085715-28.228572h-1.142857z" fill="#F8BBD0" p-id="10302"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 5.4 KiB |
3
locales/en-US.json
Normal file
3
locales/en-US.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"Test": "Test"
|
||||
}
|
3
locales/zh-CN.json
Normal file
3
locales/zh-CN.json
Normal file
@ -0,0 +1,3 @@
|
||||
{
|
||||
"Test": "测试"
|
||||
}
|
@ -6,7 +6,9 @@
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vue-tsc --noEmit && vite build",
|
||||
"preview": "vite preview"
|
||||
"preview": "vite preview",
|
||||
"test": "vue-tsc --noEmit && vite build --mode test",
|
||||
"dev-build": "vue-tsc --noEmit && vite build --mode development"
|
||||
},
|
||||
"dependencies": {
|
||||
"@vueuse/core": "^9.1.0",
|
||||
@ -27,15 +29,17 @@
|
||||
"@vitejs/plugin-vue": "^3.0.0",
|
||||
"@vitejs/plugin-vue-jsx": "^2.0.0",
|
||||
"autoprefixer": "^10.4.8",
|
||||
"postcss": "^8.1.0",
|
||||
"postcss-pxtorem": "^6.0.0",
|
||||
"prettier": "^2.7.1",
|
||||
"svg-sprite-loader": "^6.0.11",
|
||||
"typescript": "^4.6.4",
|
||||
"unplugin-auto-import": "^0.11.0",
|
||||
"unplugin-vue-components": "^0.22.0",
|
||||
"vite": "^3.0.0",
|
||||
"vite-plugin-compression": "^0.5.1",
|
||||
"vite-plugin-inspect": "^0.6.0",
|
||||
"vite-plugin-svg-icons": "^2.0.1",
|
||||
"vite-svg-loader": "^3.4.0",
|
||||
"vue-tsc": "^0.38.4"
|
||||
}
|
||||
}
|
||||
|
BIN
src/.DS_Store
vendored
Normal file
BIN
src/.DS_Store
vendored
Normal file
Binary file not shown.
18
src/App.tsx
18
src/App.tsx
@ -1,19 +1,31 @@
|
||||
import { defineComponent } from 'vue'
|
||||
import RayTransitionComponent from '@/components/RayTransitionComponent/index.vue' // 以封装动画路由组件
|
||||
import DraggableComponent from '@/components/DraggableComponent/index.vue'
|
||||
import RayIcon from '@/components/RayIcon/index'
|
||||
import RayScrollReveal from '@/components/RayScrollReveal/index'
|
||||
import { useAxiosTest } from '@use-api/test'
|
||||
import R from '@/icons/ray.svg' // 使用 vite-svg-loader 作为 svg 使用插件, 故而不需要使用 RayIcon 作为组件引入
|
||||
|
||||
const App = defineComponent({
|
||||
name: 'App',
|
||||
setup() {
|
||||
const { x, y } = useMouse()
|
||||
const { height: windowHeight } = useWindowSize()
|
||||
const { t } = useI18n()
|
||||
const inputRef = ref<HTMLInputElement>()
|
||||
|
||||
const handleFileChange = () => {
|
||||
const file = (inputRef.value as HTMLInputElement).files?.[0]
|
||||
|
||||
useAxiosTest(file as File)
|
||||
}
|
||||
|
||||
return {
|
||||
x,
|
||||
y,
|
||||
windowHeight,
|
||||
ray: t,
|
||||
handleFileChange,
|
||||
inputRef,
|
||||
}
|
||||
},
|
||||
render() {
|
||||
@ -22,10 +34,10 @@ const App = defineComponent({
|
||||
class="app-wrapper"
|
||||
style={`height: ${this.windowHeight}px;font-size: 22px; color: #FDD192;padding: 20px;`}
|
||||
>
|
||||
<RayIcon name="ray" size="24" />
|
||||
<R style="width: 24px; height: 24px;" />
|
||||
hello! Welcome to this template!
|
||||
<h1>
|
||||
当前鼠标位置: x: {this.x}, y: {this.y}
|
||||
当前鼠标位置: x: {this.x}, y: {this.y} {this.ray('Test')}
|
||||
</h1>
|
||||
<DraggableComponent />
|
||||
{Array.from({ length: 10 }, (_, i) => i).map((_, idx) => (
|
||||
|
1
src/auto-imports.d.ts
vendored
1
src/auto-imports.d.ts
vendored
@ -169,6 +169,7 @@ declare global {
|
||||
const useFullscreen: typeof import('@vueuse/core')['useFullscreen']
|
||||
const useGamepad: typeof import('@vueuse/core')['useGamepad']
|
||||
const useGeolocation: typeof import('@vueuse/core')['useGeolocation']
|
||||
const useI18n: typeof import('vue-i18n')['useI18n']
|
||||
const useIdle: typeof import('@vueuse/core')['useIdle']
|
||||
const useImage: typeof import('@vueuse/core')['useImage']
|
||||
const useInfiniteScroll: typeof import('@vueuse/core')['useInfiniteScroll']
|
||||
|
@ -1,8 +1,12 @@
|
||||
import request from '../request'
|
||||
|
||||
export const useAxiosTest = () => {
|
||||
export const useAxiosTest = (file: File) => {
|
||||
const formData = new FormData()
|
||||
formData.append('file', file!.slice())
|
||||
|
||||
return request({
|
||||
method: 'post',
|
||||
url: '',
|
||||
url: 'https://api.freezonecoin.com/identity/images/v1/upload',
|
||||
data: formData,
|
||||
})
|
||||
}
|
||||
|
BIN
src/components/.DS_Store
vendored
Normal file
BIN
src/components/.DS_Store
vendored
Normal file
Binary file not shown.
@ -1,57 +0,0 @@
|
||||
import { defineComponent } from 'vue'
|
||||
|
||||
const RayIcon = defineComponent({
|
||||
name: 'RayIcon',
|
||||
props: {
|
||||
color: {
|
||||
type: String,
|
||||
default: '',
|
||||
},
|
||||
prefix: {
|
||||
type: String,
|
||||
default: 'icon',
|
||||
},
|
||||
name: {
|
||||
type: String,
|
||||
required: true,
|
||||
},
|
||||
size: {
|
||||
type: [Number, String],
|
||||
default: 14,
|
||||
},
|
||||
width: {
|
||||
type: [Number, String],
|
||||
},
|
||||
height: {
|
||||
type: [Number, String],
|
||||
},
|
||||
customClassName: {
|
||||
type: String,
|
||||
default: '',
|
||||
},
|
||||
},
|
||||
setup(props) {
|
||||
const modelColor = computed(() => props.color)
|
||||
const symbolId = computed(() => `#${props.prefix}-${props.name}`)
|
||||
|
||||
return {
|
||||
modelColor,
|
||||
symbolId,
|
||||
}
|
||||
},
|
||||
render() {
|
||||
return (
|
||||
<svg
|
||||
ariaHidden={true}
|
||||
class={`ray-icon ${this.customClassName}`}
|
||||
style={`width: ${this.width ? this.width : this.size}px;height: ${
|
||||
this.height ? this.height : this.size
|
||||
}px`}
|
||||
>
|
||||
<use xlink:href={this.symbolId} fill={this.modelColor} />
|
||||
</svg>
|
||||
)
|
||||
},
|
||||
})
|
||||
|
||||
export default RayIcon
|
@ -1,13 +1,18 @@
|
||||
import { createI18n } from 'vue-i18n'
|
||||
import type { App } from 'vue'
|
||||
import messages from '@intlify/unplugin-vue-i18n/messages'
|
||||
|
||||
import { useGetCache } from '@use-utils/cache'
|
||||
|
||||
import type { App } from 'vue'
|
||||
|
||||
export const setupI18n = (app: App<Element>) => {
|
||||
const i18n = createI18n({
|
||||
locale:
|
||||
useGetCache('languageType') !== 'no' ? useGetCache('languageType') : 'zh',
|
||||
useGetCache('languageType') !== 'no'
|
||||
? useGetCache('languageType')
|
||||
: 'zh-CN',
|
||||
allowComposition: true, // you need to specify that!
|
||||
messages: {}, // 语言包
|
||||
messages,
|
||||
})
|
||||
|
||||
app.use(i18n)
|
||||
|
@ -2,7 +2,6 @@ import { createApp } from 'vue'
|
||||
|
||||
import '@/styles/base.scss'
|
||||
|
||||
import 'virtual:svg-icons-register' // 注册 vite-plugin-svg-icons 脚本
|
||||
import 'amfe-flexible'
|
||||
|
||||
import App from './App'
|
||||
|
1
src/vite-env.d.ts
vendored
1
src/vite-env.d.ts
vendored
@ -1,5 +1,6 @@
|
||||
/// <reference types="vite/client" />
|
||||
/// <reference types="vue/macros-global" />
|
||||
/// <reference types="vite-svg-loader" />
|
||||
|
||||
declare module '*.vue' {
|
||||
import type { DefineComponent } from 'vue'
|
||||
|
@ -24,7 +24,10 @@
|
||||
"@use-images/*": ["src/assets/images"]
|
||||
},
|
||||
"suppressImplicitAnyIndexErrors": true,
|
||||
"types": ["vite-plugin-svg-icons/client"]
|
||||
"types": [
|
||||
"vite-plugin-svg-icons/client",
|
||||
"@intlify/unplugin-vue-i18n/messages"
|
||||
]
|
||||
},
|
||||
"include": [
|
||||
"src/**/*.ts",
|
||||
|
@ -3,7 +3,6 @@ import path from 'node:path'
|
||||
import viteCompression from 'vite-plugin-compression' // 压缩打包
|
||||
import AutoImport from 'unplugin-auto-import/vite' // 自动导入
|
||||
import ViteComponents from 'unplugin-vue-components/vite' // 自动按需导入
|
||||
import { createSvgIconsPlugin } from 'vite-plugin-svg-icons' // svg图标
|
||||
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite' // i18n
|
||||
|
||||
import type { ComponentResolver, TypeImport } from 'unplugin-vue-components'
|
||||
@ -65,7 +64,7 @@ export const useAutoImport = async (imp: (ImportsMap | PresetName)[] = []) =>
|
||||
/\.md$/, // .md
|
||||
],
|
||||
dts: true,
|
||||
imports: ['vue', 'vue-router', 'pinia', '@vueuse/core', ...imp],
|
||||
imports: ['vue', 'vue-router', 'pinia', '@vueuse/core', 'vue-i18n', ...imp],
|
||||
})
|
||||
|
||||
/**
|
||||
@ -100,35 +99,13 @@ export const useViteComponents = async (
|
||||
export const useViteCompression = (options?: VitePluginCompression) =>
|
||||
viteCompression(Object.assign(options ?? {}))
|
||||
|
||||
/**
|
||||
*
|
||||
* 使用 svg 图标
|
||||
*/
|
||||
export const useCreateSvgIconsPlugin = () =>
|
||||
createSvgIconsPlugin({
|
||||
// 指定需要缓存的图标文件夹
|
||||
iconDirs: [path.resolve(process.cwd(), 'src/icons')],
|
||||
// 指定symbolId格式
|
||||
symbolId: 'icon-[dir]-[name]',
|
||||
|
||||
/**
|
||||
* 自定义插入位置
|
||||
* @default: body-last
|
||||
*/
|
||||
// inject?: 'body-last' | 'body-first'
|
||||
|
||||
/**
|
||||
* custom dom id
|
||||
* @default: __svg__icons__dom__
|
||||
*/
|
||||
// customDomId: '__svg__icons__dom__',
|
||||
})
|
||||
|
||||
export const useVueI18nPlugin = () =>
|
||||
VueI18nPlugin({
|
||||
runtimeOnly: true,
|
||||
compositionOnly: true,
|
||||
include: [path.resolve(__dirname, '../src/language/**')],
|
||||
forceStringify: true,
|
||||
defaultSFCLang: 'json',
|
||||
include: [path.resolve(__dirname, '../locales/**')],
|
||||
})
|
||||
|
||||
/**
|
||||
@ -156,6 +133,12 @@ export const useViteBuildPlugin = (options?: BuildOptions) => {
|
||||
cssCodeSplit: true, // 拆分css代码
|
||||
minify: 'esbuild', // 指定使用混淆器(terser|esbuild)
|
||||
sourcemap: false,
|
||||
terserOptions: {
|
||||
compress: {
|
||||
drop_console: true, // 打包后移除console
|
||||
drop_debugger: true, // 打包后移除debugger
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
return Object.assign(defaultPlugin, options)
|
||||
@ -187,3 +170,61 @@ export const useViteServerPlugin = (options?: ServerOptions) => {
|
||||
|
||||
return Object.assign(server, options)
|
||||
}
|
||||
|
||||
export const useEnvBuildOutput = (mode: string) => {
|
||||
let buildOptions = {
|
||||
outDir: 'dist/test-dist',
|
||||
sourcemap: false,
|
||||
terserOptions: {
|
||||
compress: {
|
||||
drop_console: true, // 打包后移除console
|
||||
drop_debugger: true, // 打包后移除debugger
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
switch (mode) {
|
||||
case 'test':
|
||||
buildOptions = {
|
||||
outDir: 'dist/test-dist',
|
||||
sourcemap: true,
|
||||
terserOptions: {
|
||||
compress: {
|
||||
drop_console: false, // 打包后移除console
|
||||
drop_debugger: false, // 打包后移除debugger
|
||||
},
|
||||
},
|
||||
}
|
||||
break
|
||||
|
||||
case 'development':
|
||||
buildOptions = {
|
||||
outDir: 'dist/development-dist',
|
||||
sourcemap: true,
|
||||
terserOptions: {
|
||||
compress: {
|
||||
drop_console: false, // 打包后移除console
|
||||
drop_debugger: false, // 打包后移除debugger
|
||||
},
|
||||
},
|
||||
}
|
||||
break
|
||||
|
||||
case 'production':
|
||||
buildOptions = {
|
||||
outDir: 'dist/production-dist',
|
||||
sourcemap: false,
|
||||
terserOptions: {
|
||||
compress: {
|
||||
drop_console: true, // 打包后移除console
|
||||
drop_debugger: true, // 打包后移除debugger
|
||||
},
|
||||
},
|
||||
}
|
||||
break
|
||||
}
|
||||
|
||||
return {
|
||||
buildOptions,
|
||||
}
|
||||
}
|
||||
|
@ -2,22 +2,25 @@ import { defineConfig } from 'vite'
|
||||
import vue from '@vitejs/plugin-vue'
|
||||
|
||||
import {
|
||||
useAliasOptions,
|
||||
useViteBuildPlugin,
|
||||
useViteServerPlugin,
|
||||
useEnvBuildOutput,
|
||||
useAutoImport,
|
||||
useViteComponents,
|
||||
useAliasOptions,
|
||||
useViteCompression,
|
||||
useVueI18nPlugin,
|
||||
useHTMLTitlePlugin,
|
||||
useViteBuildPlugin,
|
||||
useCreateSvgIconsPlugin,
|
||||
useViteServerPlugin,
|
||||
} from './vite-plugin/index'
|
||||
import vueJsx from '@vitejs/plugin-vue-jsx'
|
||||
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite'
|
||||
import ViteInspect from 'vite-plugin-inspect'
|
||||
import viteSvgLoader from 'vite-svg-loader'
|
||||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig(async () => {
|
||||
export default defineConfig(async ({ mode }) => {
|
||||
const { buildOptions } = useEnvBuildOutput(mode)
|
||||
|
||||
return {
|
||||
resolve: {
|
||||
alias: useAliasOptions(),
|
||||
@ -25,20 +28,20 @@ export default defineConfig(async () => {
|
||||
plugins: [
|
||||
vue({ reactivityTransform: true }),
|
||||
vueJsx(),
|
||||
await useAutoImport(),
|
||||
await useViteComponents(),
|
||||
useViteCompression(),
|
||||
VueI18nPlugin(),
|
||||
ViteInspect(), // 仅适用于开发模式(检查 Vite 插件的中间状态)
|
||||
VueI18nPlugin(),
|
||||
useAutoImport(),
|
||||
useViteComponents(),
|
||||
useViteCompression(),
|
||||
useVueI18nPlugin(),
|
||||
useHTMLTitlePlugin(),
|
||||
useCreateSvgIconsPlugin(),
|
||||
viteSvgLoader(),
|
||||
],
|
||||
optimizeDeps: {
|
||||
include: ['vue', 'vue-router', 'pinia', 'vue-i18n', '@vueuse/core'],
|
||||
},
|
||||
build: {
|
||||
...useViteBuildPlugin(),
|
||||
...useViteBuildPlugin(buildOptions),
|
||||
rollupOptions: {
|
||||
external: 'virtual:svg-icons-register',
|
||||
},
|
||||
|
2875
yarn-error.log
Normal file
2875
yarn-error.log
Normal file
File diff suppressed because it is too large
Load Diff
115
yarn.lock
115
yarn.lock
@ -443,23 +443,11 @@
|
||||
resolved "https://registry.yarnpkg.com/@types/crypto-js/-/crypto-js-4.1.1.tgz#602859584cecc91894eb23a4892f38cfa927890d"
|
||||
integrity sha512-BG7fQKZ689HIoc5h+6D2Dgq1fABRa0RbBWKBd9SP/MVRVXROflpm5fhwyATX5duFmbStzyzyycPB8qUYKDH3NA==
|
||||
|
||||
"@types/node@*":
|
||||
version "18.6.4"
|
||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-18.6.4.tgz#fd26723a8a3f8f46729812a7f9b4fc2d1608ed39"
|
||||
integrity sha512-I4BD3L+6AWiUobfxZ49DlU43gtI+FTHSv9pE2Zekg6KjMpre4ByusaljW3vYSLJrvQ1ck1hUaeVu8HVlY3vzHg==
|
||||
|
||||
"@types/scrollreveal@^0.0.8":
|
||||
version "0.0.8"
|
||||
resolved "https://registry.yarnpkg.com/@types/scrollreveal/-/scrollreveal-0.0.8.tgz#d0313ac67b57a32b3beb224e20af63ab13cd2696"
|
||||
integrity sha512-HwD3vSmxjEozI4+uHY7pPxB47gppsv0racBHZreEQFC6K1kBKaIUkCTwUMH6gGFEDmLrgOckfGsTvR/n2yyV6g==
|
||||
|
||||
"@types/svgo@^2.6.1":
|
||||
version "2.6.3"
|
||||
resolved "https://registry.yarnpkg.com/@types/svgo/-/svgo-2.6.3.tgz#0786d8329b67cd48d84e57cb92b79832b85e6c8e"
|
||||
integrity sha512-5sP0Xgo0dXppY0tbYF6TevB/1+tzFLuu71XXxC/zGvQAn9PW7y+DwtDO81g0ZUPye00K6tPwtsLDOpARa0mFcA==
|
||||
dependencies:
|
||||
"@types/node" "*"
|
||||
|
||||
"@types/web-bluetooth@^0.0.15":
|
||||
version "0.0.15"
|
||||
resolved "https://registry.yarnpkg.com/@types/web-bluetooth/-/web-bluetooth-0.0.15.tgz#d60330046a6ed8a13b4a53df3813c44942ebdf72"
|
||||
@ -552,7 +540,7 @@
|
||||
"@vue/compiler-core" "3.2.37"
|
||||
"@vue/shared" "3.2.37"
|
||||
|
||||
"@vue/compiler-sfc@3.2.37", "@vue/compiler-sfc@^3.2.23", "@vue/compiler-sfc@^3.2.37":
|
||||
"@vue/compiler-sfc@3.2.37", "@vue/compiler-sfc@^3.2.20", "@vue/compiler-sfc@^3.2.23", "@vue/compiler-sfc@^3.2.37":
|
||||
version "3.2.37"
|
||||
resolved "https://registry.yarnpkg.com/@vue/compiler-sfc/-/compiler-sfc-3.2.37.tgz#3103af3da2f40286edcd85ea495dcb35bc7f5ff4"
|
||||
integrity sha512-+7i/2+9LYlpqDv+KTtWhOZH+pa8/HnX/905MdVmAcI/mPQOBwkHHIzrsEsucyOIZQYMkXUiTkmZq5am/NyXKkg==
|
||||
@ -990,14 +978,6 @@ copy-descriptor@^0.1.0:
|
||||
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
|
||||
integrity sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==
|
||||
|
||||
cors@^2.8.5:
|
||||
version "2.8.5"
|
||||
resolved "https://registry.yarnpkg.com/cors/-/cors-2.8.5.tgz#eac11da51592dd86b9f06f6e7ac293b3df875d29"
|
||||
integrity sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==
|
||||
dependencies:
|
||||
object-assign "^4"
|
||||
vary "^1"
|
||||
|
||||
crypto-js@^4.1.1:
|
||||
version "4.1.1"
|
||||
resolved "https://registry.yarnpkg.com/crypto-js/-/crypto-js-4.1.1.tgz#9e485bcf03521041bd85844786b83fb7619736cf"
|
||||
@ -1058,6 +1038,11 @@ decode-uri-component@^0.2.0:
|
||||
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
|
||||
integrity sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==
|
||||
|
||||
deepmerge@1.3.2:
|
||||
version "1.3.2"
|
||||
resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-1.3.2.tgz#1663691629d4dbfe364fa12a2a4f0aa86aa3a050"
|
||||
integrity sha512-qjMjTrk+RKv/sp4RPDpV5CnKhxjFI9p+GkLBOls5A8EEElldYWCWA9zceAkmfd0xIo2aU1nxiaLFoiya2sb6Cg==
|
||||
|
||||
define-property@^0.2.5:
|
||||
version "0.2.5"
|
||||
resolved "https://registry.yarnpkg.com/define-property/-/define-property-0.2.5.tgz#c35b1ef918ec3c990f9a5bc57be04aacec5c8116"
|
||||
@ -1126,6 +1111,11 @@ domhandler@^4.2.0, domhandler@^4.3.1:
|
||||
dependencies:
|
||||
domelementtype "^2.2.0"
|
||||
|
||||
domready@1.0.8:
|
||||
version "1.0.8"
|
||||
resolved "https://registry.yarnpkg.com/domready/-/domready-1.0.8.tgz#91f252e597b65af77e745ae24dd0185d5e26d58c"
|
||||
integrity sha512-uIzsOJUNk+AdGE9a6VDeessoMCzF8RrZvJCX/W8QtyfgdR6Uofn/MvRonih3OtCO79b2VDzDOymuiABrQ4z3XA==
|
||||
|
||||
domutils@^1.5.1:
|
||||
version "1.7.0"
|
||||
resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a"
|
||||
@ -1331,11 +1321,6 @@ estree-walker@^2.0.1, estree-walker@^2.0.2:
|
||||
resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac"
|
||||
integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==
|
||||
|
||||
etag@^1.8.1:
|
||||
version "1.8.1"
|
||||
resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887"
|
||||
integrity sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==
|
||||
|
||||
expand-brackets@^2.1.4:
|
||||
version "2.1.4"
|
||||
resolved "https://registry.yarnpkg.com/expand-brackets/-/expand-brackets-2.1.4.tgz#b77735e315ce30f6b6eff0f83b04151a22449622"
|
||||
@ -1940,6 +1925,11 @@ miniraf@1.0.0:
|
||||
resolved "https://registry.yarnpkg.com/miniraf/-/miniraf-1.0.0.tgz#5d88e108bbdcb55b4a2ff3da337f24a13a3377e1"
|
||||
integrity sha512-XpvhtJYzVrpXe+JoAthrT9E40NIrSDDMcdHEYL2M+lR/OCas0nadetcBBq/MWYqlgV5aDWVQ3mfAqd+fG6Y/EQ==
|
||||
|
||||
mitt@1.1.2:
|
||||
version "1.1.2"
|
||||
resolved "https://registry.yarnpkg.com/mitt/-/mitt-1.1.2.tgz#380e61480d6a615b660f07abb60d51e0a4e4bed6"
|
||||
integrity sha512-3btxP0O9iGADGWAkteQ8mzDtEspZqu4I32y4GZYCV5BrwtzdcRpF4dQgNdJadCrbBx7Lu6Sq9AVrerMHR0Hkmw==
|
||||
|
||||
mixin-deep@^1.2.0:
|
||||
version "1.3.2"
|
||||
resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
|
||||
@ -2016,7 +2006,7 @@ nth-check@^2.0.1:
|
||||
dependencies:
|
||||
boolbase "^1.0.0"
|
||||
|
||||
object-assign@^4, object-assign@^4.1.0:
|
||||
object-assign@^4.1.0:
|
||||
version "4.1.1"
|
||||
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
|
||||
integrity sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==
|
||||
@ -2121,6 +2111,15 @@ postcss@^5.2.17:
|
||||
source-map "^0.5.6"
|
||||
supports-color "^3.2.3"
|
||||
|
||||
postcss@^8.1.0:
|
||||
version "8.4.16"
|
||||
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.16.tgz#33a1d675fac39941f5f445db0de4db2b6e01d43c"
|
||||
integrity sha512-ipHE1XBvKzm5xI7hiHCZJCSugxvsdq2mPnsq5+UF+VHCjiBvtDrlxJfMBToWaP9D5XlgNmcFGqoHmUn0EYEaRQ==
|
||||
dependencies:
|
||||
nanoid "^3.3.4"
|
||||
picocolors "^1.0.0"
|
||||
source-map-js "^1.0.2"
|
||||
|
||||
postcss@^8.1.10, postcss@^8.4.14:
|
||||
version "8.4.14"
|
||||
resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.14.tgz#ee9274d5622b4858c1007a74d76e42e56fd21caf"
|
||||
@ -2470,7 +2469,16 @@ supports-preserve-symlinks-flag@^1.0.0:
|
||||
resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09"
|
||||
integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==
|
||||
|
||||
svg-baker@1.7.0:
|
||||
svg-baker-runtime@^1.4.7:
|
||||
version "1.4.7"
|
||||
resolved "https://registry.yarnpkg.com/svg-baker-runtime/-/svg-baker-runtime-1.4.7.tgz#f4720637f5b6202eef6378d81f1fead0815f8a4e"
|
||||
integrity sha512-Zorfwwj5+lWjk/oxwSMsRdS2sPQQdTmmsvaSpzU+i9ZWi3zugHLt6VckWfnswphQP0LmOel3nggpF5nETbt6xw==
|
||||
dependencies:
|
||||
deepmerge "1.3.2"
|
||||
mitt "1.1.2"
|
||||
svg-baker "^1.7.0"
|
||||
|
||||
svg-baker@^1.5.0, svg-baker@^1.7.0:
|
||||
version "1.7.0"
|
||||
resolved "https://registry.yarnpkg.com/svg-baker/-/svg-baker-1.7.0.tgz#8367f78d875550c52fe4756f7303d5c5d7c2e9a7"
|
||||
integrity sha512-nibslMbkXOIkqKVrfcncwha45f97fGuAOn1G99YwnwTj8kF9YiM6XexPcUso97NxOm6GsP0SIvYVIosBis1xLg==
|
||||
@ -2489,12 +2497,26 @@ svg-baker@1.7.0:
|
||||
query-string "^4.3.2"
|
||||
traverse "^0.6.6"
|
||||
|
||||
svg-sprite-loader@^6.0.11:
|
||||
version "6.0.11"
|
||||
resolved "https://registry.yarnpkg.com/svg-sprite-loader/-/svg-sprite-loader-6.0.11.tgz#a4d60cee3d74232a2c17d31c73a2008295f61220"
|
||||
integrity sha512-TedsTf8wsHH6HgdwKjUveDZRC6q5gPloYV8A8/zZaRWP929J7x6TzQ6MvZFl+YYDJuJ0Akyuu/vNVJ+fbPuYXg==
|
||||
dependencies:
|
||||
bluebird "^3.5.0"
|
||||
deepmerge "1.3.2"
|
||||
domready "1.0.8"
|
||||
escape-string-regexp "1.0.5"
|
||||
loader-utils "^1.1.0"
|
||||
svg-baker "^1.5.0"
|
||||
svg-baker-runtime "^1.4.7"
|
||||
url-slug "2.0.0"
|
||||
|
||||
svg-tags@^1.0.0:
|
||||
version "1.0.0"
|
||||
resolved "https://registry.yarnpkg.com/svg-tags/-/svg-tags-1.0.0.tgz#58f71cee3bd519b59d4b2a843b6c7de64ac04764"
|
||||
integrity sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==
|
||||
|
||||
svgo@^2.8.0:
|
||||
svgo@^2.7.0:
|
||||
version "2.8.0"
|
||||
resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24"
|
||||
integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==
|
||||
@ -2572,6 +2594,11 @@ ufo@^0.8.5:
|
||||
resolved "https://registry.yarnpkg.com/ufo/-/ufo-0.8.5.tgz#e367b4205ece9d9723f2fa54f887d43ed1bce5d0"
|
||||
integrity sha512-e4+UtA5IRO+ha6hYklwj6r7BjiGMxS0O+UaSg9HbaTefg4kMkzj4tXzEBajRR+wkxf+golgAWKzLbytCUDMJAA==
|
||||
|
||||
unidecode@0.1.8:
|
||||
version "0.1.8"
|
||||
resolved "https://registry.yarnpkg.com/unidecode/-/unidecode-0.1.8.tgz#efbb301538bc45246a9ac8c559d72f015305053e"
|
||||
integrity sha512-SdoZNxCWpN2tXTCrGkPF/0rL2HEq+i2gwRG1ReBvx8/0yTzC3enHfugOf8A9JBShVwwrRIkLX0YcDUGbzjbVCA==
|
||||
|
||||
unimport@^0.6.5:
|
||||
version "0.6.5"
|
||||
resolved "https://registry.yarnpkg.com/unimport/-/unimport-0.6.5.tgz#f50fcfcba6ee4228d649670b4bed2f63cb03ef96"
|
||||
@ -2662,6 +2689,13 @@ urix@^0.1.0:
|
||||
resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
|
||||
integrity sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==
|
||||
|
||||
url-slug@2.0.0:
|
||||
version "2.0.0"
|
||||
resolved "https://registry.yarnpkg.com/url-slug/-/url-slug-2.0.0.tgz#a789d5aed4995c0d95af33377ad1d5c68d4d7027"
|
||||
integrity sha512-aiNmSsVgrjCiJ2+KWPferjT46YFKoE8i0YX04BlMVDue022Xwhg/zYlnZ6V9/mP3p8Wj7LEp0myiTkC/p6sxew==
|
||||
dependencies:
|
||||
unidecode "0.1.8"
|
||||
|
||||
use@^3.1.0:
|
||||
version "3.1.1"
|
||||
resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
|
||||
@ -2672,11 +2706,6 @@ util-deprecate@^1.0.1:
|
||||
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
|
||||
integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==
|
||||
|
||||
vary@^1:
|
||||
version "1.1.2"
|
||||
resolved "https://registry.yarnpkg.com/vary/-/vary-1.1.2.tgz#2299f02c6ded30d4a5961b0b9f74524a18f634fc"
|
||||
integrity sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==
|
||||
|
||||
vite-plugin-compression@^0.5.1:
|
||||
version "0.5.1"
|
||||
resolved "https://registry.yarnpkg.com/vite-plugin-compression/-/vite-plugin-compression-0.5.1.tgz#a75b0d8f48357ebb377b65016da9f20885ef39b6"
|
||||
@ -2697,19 +2726,13 @@ vite-plugin-inspect@^0.6.0:
|
||||
sirv "^2.0.2"
|
||||
ufo "^0.8.5"
|
||||
|
||||
vite-plugin-svg-icons@^2.0.1:
|
||||
version "2.0.1"
|
||||
resolved "https://registry.yarnpkg.com/vite-plugin-svg-icons/-/vite-plugin-svg-icons-2.0.1.tgz#7269a0962593509f371b9e2bb344d469db2c6df9"
|
||||
integrity sha512-6ktD+DhV6Rz3VtedYvBKKVA2eXF+sAQVaKkKLDSqGUfnhqXl3bj5PPkVTl3VexfTuZy66PmINi8Q6eFnVfRUmA==
|
||||
vite-svg-loader@^3.4.0:
|
||||
version "3.4.0"
|
||||
resolved "https://registry.yarnpkg.com/vite-svg-loader/-/vite-svg-loader-3.4.0.tgz#4638827fe86b85ecfcea1ad61dd972c351d5befd"
|
||||
integrity sha512-xD3yb1FX+f4l9/TmsYIqyki8ncpcVsZ2gEJFh/wLuNNqt55C8OJ+JlcMWOA/Z9gRA+ylV/TA1wmJLxzZkCRqlA==
|
||||
dependencies:
|
||||
"@types/svgo" "^2.6.1"
|
||||
cors "^2.8.5"
|
||||
debug "^4.3.3"
|
||||
etag "^1.8.1"
|
||||
fs-extra "^10.0.0"
|
||||
pathe "^0.2.0"
|
||||
svg-baker "1.7.0"
|
||||
svgo "^2.8.0"
|
||||
"@vue/compiler-sfc" "^3.2.20"
|
||||
svgo "^2.7.0"
|
||||
|
||||
vite@^3.0.0:
|
||||
version "3.0.4"
|
||||
|
Loading…
x
Reference in New Issue
Block a user