添加设置功能
This commit is contained in:
parent
24a603c755
commit
4c6ad37f3a
@ -120,7 +120,18 @@ module.exports = {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
vendor: ['moment']
|
vendor: ['moment'],
|
||||||
|
babel: {
|
||||||
|
plugins: [
|
||||||
|
[
|
||||||
|
'component',
|
||||||
|
{
|
||||||
|
libraryName: 'element-ui',
|
||||||
|
styleLibraryName: 'theme-chalk'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
env: {
|
env: {
|
||||||
version: pkg.version,
|
version: pkg.version,
|
||||||
|
@ -20,6 +20,7 @@
|
|||||||
"@fortawesome/vue-fontawesome": "^0.1.8",
|
"@fortawesome/vue-fontawesome": "^0.1.8",
|
||||||
"@nuxtjs/axios": "^5.8.0",
|
"@nuxtjs/axios": "^5.8.0",
|
||||||
"cross-env": "^6.0.3",
|
"cross-env": "^6.0.3",
|
||||||
|
"element-ui": "^2.13.2",
|
||||||
"highlight.js": "^9.17.1",
|
"highlight.js": "^9.17.1",
|
||||||
"koa": "^2.11.0",
|
"koa": "^2.11.0",
|
||||||
"moment": "^2.27.0",
|
"moment": "^2.27.0",
|
||||||
@ -34,6 +35,7 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@nuxtjs/eslint-config": "^2.0.0",
|
"@nuxtjs/eslint-config": "^2.0.0",
|
||||||
"babel-eslint": "^10.0.3",
|
"babel-eslint": "^10.0.3",
|
||||||
|
"babel-plugin-component": "^1.1.1",
|
||||||
"eslint": "^6.7.2",
|
"eslint": "^6.7.2",
|
||||||
"eslint-config-standard": ">=14.1.0",
|
"eslint-config-standard": ">=14.1.0",
|
||||||
"eslint-loader": "^3.0.3",
|
"eslint-loader": "^3.0.3",
|
||||||
|
@ -159,11 +159,19 @@
|
|||||||
.btnFooter.btnNext(:style='"color: " + (articels.next ? "#333" : "#ccc")')
|
.btnFooter.btnNext(:style='"color: " + (articels.next ? "#333" : "#ccc")')
|
||||||
| 下一篇 {{ articels.next ? "(" + decodeTitle(articels.next.post_name) + ")" : "" }}
|
| 下一篇 {{ articels.next ? "(" + decodeTitle(articels.next.post_name) + ")" : "" }}
|
||||||
Icon(:icon='["fas", "chevron-right"]')
|
Icon(:icon='["fas", "chevron-right"]')
|
||||||
modal(name='setting')
|
modal.modal-setting(name='setting')
|
||||||
div
|
.vue-modal-content
|
||||||
| 此功能正在开发中,敬请期待。
|
Form(ref='form', :model='form', label-width='130px')
|
||||||
.vue-module-buttons
|
FormItem(label='手机号')
|
||||||
button.vue-module-button(
|
Input(v-model='form.phone')
|
||||||
|
FormItem(label='发送提醒到手机')
|
||||||
|
Switch(v-model='form.sendPhone')
|
||||||
|
FormItem(label='邮箱')
|
||||||
|
Input(v-model='form.phone')
|
||||||
|
FormItem(label='发送提醒到邮箱')
|
||||||
|
Switch(v-model='form.sendEmail')
|
||||||
|
.vue-modal-buttons
|
||||||
|
button.vue-modal-button(
|
||||||
type='button',
|
type='button',
|
||||||
@click.stop='$modal.hide("setting")'
|
@click.stop='$modal.hide("setting")'
|
||||||
)
|
)
|
||||||
@ -173,8 +181,12 @@
|
|||||||
<script>
|
<script>
|
||||||
import remark from 'remark'
|
import remark from 'remark'
|
||||||
import strip from 'strip-markdown'
|
import strip from 'strip-markdown'
|
||||||
|
import { Form, FormItem, Input, Switch } from 'element-ui'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
|
components: {
|
||||||
|
Form, FormItem, Input, Switch
|
||||||
|
},
|
||||||
async asyncData ({ route, app, $axios, redirect }) {
|
async asyncData ({ route, app, $axios, redirect }) {
|
||||||
let draftStr = ''
|
let draftStr = ''
|
||||||
if (route.query && route.query.draft === 'true') {
|
if (route.query && route.query.draft === 'true') {
|
||||||
@ -262,7 +274,13 @@ export default {
|
|||||||
type: 'weibo',
|
type: 'weibo',
|
||||||
logo: 'https://cdn.wyr.me/imgs/Weibo-Login.png'
|
logo: 'https://cdn.wyr.me/imgs/Weibo-Login.png'
|
||||||
}
|
}
|
||||||
]
|
],
|
||||||
|
form: {
|
||||||
|
phone: '',
|
||||||
|
sendPhone: true,
|
||||||
|
email: '',
|
||||||
|
sendEmail: true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted () {
|
mounted () {
|
||||||
@ -1280,15 +1298,24 @@ $logo-width = 64px
|
|||||||
.vditor--fullscreen
|
.vditor--fullscreen
|
||||||
z-index 9999
|
z-index 9999
|
||||||
|
|
||||||
.vue-module-buttons
|
.modal-setting
|
||||||
|
z-index 99999
|
||||||
|
|
||||||
|
.vue-modal-content
|
||||||
|
padding 10px
|
||||||
|
box-sizing border-box
|
||||||
|
|
||||||
|
.vue-modal-buttons
|
||||||
display flex
|
display flex
|
||||||
flex 0 1 auto
|
flex 0 1 auto
|
||||||
width 100%
|
width 100%
|
||||||
border-top 1px solid #eee
|
border-top 1px solid #eee
|
||||||
box-sizing border-box
|
box-sizing border-box
|
||||||
text-align center
|
text-align center
|
||||||
|
bottom 0
|
||||||
|
position absolute
|
||||||
|
|
||||||
.vue-module-button
|
.vue-modal-button
|
||||||
font-size 12px !important
|
font-size 12px !important
|
||||||
background transparent
|
background transparent
|
||||||
padding 0
|
padding 0
|
||||||
@ -1303,6 +1330,7 @@ $logo-width = 64px
|
|||||||
outline none
|
outline none
|
||||||
text-align center
|
text-align center
|
||||||
width 100%
|
width 100%
|
||||||
|
bottom 0
|
||||||
|
|
||||||
@media (max-width 768px)
|
@media (max-width 768px)
|
||||||
.postPage
|
.postPage
|
||||||
|
72
yarn.lock
72
yarn.lock
@ -144,6 +144,14 @@
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@babel/types" "^7.8.3"
|
"@babel/types" "^7.8.3"
|
||||||
|
|
||||||
|
"@babel/helper-module-imports@7.0.0-beta.35":
|
||||||
|
version "7.0.0-beta.35"
|
||||||
|
resolved "https://registry.npm.taobao.org/@babel/helper-module-imports/download/@babel/helper-module-imports-7.0.0-beta.35.tgz?cache=0&sync_timestamp=1593524750098&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Fhelper-module-imports%2Fdownload%2F%40babel%2Fhelper-module-imports-7.0.0-beta.35.tgz#308e350e731752cdb4d0f058df1d704925c64e0a"
|
||||||
|
integrity sha1-MI41DnMXUs200PBY3x1wSSXGTgo=
|
||||||
|
dependencies:
|
||||||
|
"@babel/types" "7.0.0-beta.35"
|
||||||
|
lodash "^4.2.0"
|
||||||
|
|
||||||
"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.8.3":
|
"@babel/helper-module-imports@^7.0.0", "@babel/helper-module-imports@^7.8.3":
|
||||||
version "7.8.3"
|
version "7.8.3"
|
||||||
resolved "https://mirrors.huaweicloud.com/repository/npm/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498"
|
resolved "https://mirrors.huaweicloud.com/repository/npm/@babel/helper-module-imports/-/helper-module-imports-7.8.3.tgz#7fe39589b39c016331b6b8c3f441e8f0b1419498"
|
||||||
@ -787,6 +795,15 @@
|
|||||||
globals "^11.1.0"
|
globals "^11.1.0"
|
||||||
lodash "^4.17.13"
|
lodash "^4.17.13"
|
||||||
|
|
||||||
|
"@babel/types@7.0.0-beta.35":
|
||||||
|
version "7.0.0-beta.35"
|
||||||
|
resolved "https://registry.npm.taobao.org/@babel/types/download/@babel/types-7.0.0-beta.35.tgz?cache=0&sync_timestamp=1598904189191&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40babel%2Ftypes%2Fdownload%2F%40babel%2Ftypes-7.0.0-beta.35.tgz#cf933a9a9a38484ca724b335b88d83726d5ab960"
|
||||||
|
integrity sha1-z5M6mpo4SEynJLM1uI2Dcm1auWA=
|
||||||
|
dependencies:
|
||||||
|
esutils "^2.0.2"
|
||||||
|
lodash "^4.2.0"
|
||||||
|
to-fast-properties "^2.0.0"
|
||||||
|
|
||||||
"@babel/types@^7.4.4", "@babel/types@^7.7.0", "@babel/types@^7.8.3", "@babel/types@^7.8.6", "@babel/types@^7.9.0", "@babel/types@^7.9.5", "@babel/types@^7.9.6":
|
"@babel/types@^7.4.4", "@babel/types@^7.7.0", "@babel/types@^7.8.3", "@babel/types@^7.8.6", "@babel/types@^7.9.0", "@babel/types@^7.9.5", "@babel/types@^7.9.6":
|
||||||
version "7.9.6"
|
version "7.9.6"
|
||||||
resolved "https://mirrors.huaweicloud.com/repository/npm/@babel/types/-/types-7.9.6.tgz#2c5502b427251e9de1bd2dff95add646d95cc9f7"
|
resolved "https://mirrors.huaweicloud.com/repository/npm/@babel/types/-/types-7.9.6.tgz#2c5502b427251e9de1bd2dff95add646d95cc9f7"
|
||||||
@ -1723,6 +1740,13 @@ async-limiter@~1.0.0:
|
|||||||
resolved "https://mirrors.huaweicloud.com/repository/npm/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd"
|
resolved "https://mirrors.huaweicloud.com/repository/npm/async-limiter/-/async-limiter-1.0.1.tgz#dd379e94f0db8310b08291f9d64c3209766617fd"
|
||||||
integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
|
integrity sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==
|
||||||
|
|
||||||
|
async-validator@~1.8.1:
|
||||||
|
version "1.8.5"
|
||||||
|
resolved "https://registry.npm.taobao.org/async-validator/download/async-validator-1.8.5.tgz#dc3e08ec1fd0dddb67e60842f02c0cd1cec6d7f0"
|
||||||
|
integrity sha1-3D4I7B/Q3dtn5ghC8CwM0c7G1/A=
|
||||||
|
dependencies:
|
||||||
|
babel-runtime "6.x"
|
||||||
|
|
||||||
atob@^2.1.2:
|
atob@^2.1.2:
|
||||||
version "2.1.2"
|
version "2.1.2"
|
||||||
resolved "https://mirrors.huaweicloud.com/repository/npm/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
|
resolved "https://mirrors.huaweicloud.com/repository/npm/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
|
||||||
@ -1774,6 +1798,11 @@ babel-eslint@^10.0.3:
|
|||||||
eslint-visitor-keys "^1.0.0"
|
eslint-visitor-keys "^1.0.0"
|
||||||
resolve "^1.12.0"
|
resolve "^1.12.0"
|
||||||
|
|
||||||
|
babel-helper-vue-jsx-merge-props@^2.0.0:
|
||||||
|
version "2.0.3"
|
||||||
|
resolved "https://registry.npm.taobao.org/babel-helper-vue-jsx-merge-props/download/babel-helper-vue-jsx-merge-props-2.0.3.tgz#22aebd3b33902328e513293a8e4992b384f9f1b6"
|
||||||
|
integrity sha1-Iq69OzOQIyjlEyk6jkmSs4T58bY=
|
||||||
|
|
||||||
babel-loader@^8.1.0:
|
babel-loader@^8.1.0:
|
||||||
version "8.1.0"
|
version "8.1.0"
|
||||||
resolved "https://mirrors.huaweicloud.com/repository/npm/babel-loader/-/babel-loader-8.1.0.tgz#c611d5112bd5209abe8b9fa84c3e4da25275f1c3"
|
resolved "https://mirrors.huaweicloud.com/repository/npm/babel-loader/-/babel-loader-8.1.0.tgz#c611d5112bd5209abe8b9fa84c3e4da25275f1c3"
|
||||||
@ -1785,6 +1814,13 @@ babel-loader@^8.1.0:
|
|||||||
pify "^4.0.1"
|
pify "^4.0.1"
|
||||||
schema-utils "^2.6.5"
|
schema-utils "^2.6.5"
|
||||||
|
|
||||||
|
babel-plugin-component@^1.1.1:
|
||||||
|
version "1.1.1"
|
||||||
|
resolved "https://registry.npm.taobao.org/babel-plugin-component/download/babel-plugin-component-1.1.1.tgz#9b023a23ff5c9aae0fd56c5a18b9cab8c4d45eea"
|
||||||
|
integrity sha1-mwI6I/9cmq4P1WxaGLnKuMTUXuo=
|
||||||
|
dependencies:
|
||||||
|
"@babel/helper-module-imports" "7.0.0-beta.35"
|
||||||
|
|
||||||
babel-plugin-dynamic-import-node@^2.3.3:
|
babel-plugin-dynamic-import-node@^2.3.3:
|
||||||
version "2.3.3"
|
version "2.3.3"
|
||||||
resolved "https://mirrors.huaweicloud.com/repository/npm/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3"
|
resolved "https://mirrors.huaweicloud.com/repository/npm/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3"
|
||||||
@ -1792,7 +1828,7 @@ babel-plugin-dynamic-import-node@^2.3.3:
|
|||||||
dependencies:
|
dependencies:
|
||||||
object.assign "^4.1.0"
|
object.assign "^4.1.0"
|
||||||
|
|
||||||
babel-runtime@^6.26.0:
|
babel-runtime@6.x, babel-runtime@^6.26.0:
|
||||||
version "6.26.0"
|
version "6.26.0"
|
||||||
resolved "https://mirrors.huaweicloud.com/repository/npm/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
|
resolved "https://mirrors.huaweicloud.com/repository/npm/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
|
||||||
integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4=
|
integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4=
|
||||||
@ -3063,6 +3099,11 @@ deep-is@~0.1.3:
|
|||||||
resolved "https://mirrors.huaweicloud.com/repository/npm/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
|
resolved "https://mirrors.huaweicloud.com/repository/npm/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34"
|
||||||
integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
|
integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=
|
||||||
|
|
||||||
|
deepmerge@^1.2.0:
|
||||||
|
version "1.5.2"
|
||||||
|
resolved "https://registry.npm.taobao.org/deepmerge/download/deepmerge-1.5.2.tgz?cache=0&sync_timestamp=1593463429320&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fdeepmerge%2Fdownload%2Fdeepmerge-1.5.2.tgz#10499d868844cdad4fee0842df8c7f6f0c95a753"
|
||||||
|
integrity sha1-EEmdhohEza1P7ghC34x/bwyVp1M=
|
||||||
|
|
||||||
deepmerge@^4.2.2:
|
deepmerge@^4.2.2:
|
||||||
version "4.2.2"
|
version "4.2.2"
|
||||||
resolved "https://mirrors.huaweicloud.com/repository/npm/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955"
|
resolved "https://mirrors.huaweicloud.com/repository/npm/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955"
|
||||||
@ -3297,6 +3338,18 @@ electron-to-chromium@^1.3.413:
|
|||||||
resolved "https://mirrors.huaweicloud.com/repository/npm/electron-to-chromium/-/electron-to-chromium-1.3.427.tgz#ea43d02908a8c71f47ebb46e09de5a3cf8236f04"
|
resolved "https://mirrors.huaweicloud.com/repository/npm/electron-to-chromium/-/electron-to-chromium-1.3.427.tgz#ea43d02908a8c71f47ebb46e09de5a3cf8236f04"
|
||||||
integrity sha512-/rG5G7Opcw68/Yrb4qYkz07h3bESVRJjUl4X/FrKLXzoUJleKm6D7K7rTTz8V5LUWnd+BbTOyxJX2XprRqHD8A==
|
integrity sha512-/rG5G7Opcw68/Yrb4qYkz07h3bESVRJjUl4X/FrKLXzoUJleKm6D7K7rTTz8V5LUWnd+BbTOyxJX2XprRqHD8A==
|
||||||
|
|
||||||
|
element-ui@^2.13.2:
|
||||||
|
version "2.13.2"
|
||||||
|
resolved "https://registry.npm.taobao.org/element-ui/download/element-ui-2.13.2.tgz#582bf47aaaaaafe23ea1958fae217a687ad06447"
|
||||||
|
integrity sha1-WCv0eqqqr+I+oZWPriF6aHrQZEc=
|
||||||
|
dependencies:
|
||||||
|
async-validator "~1.8.1"
|
||||||
|
babel-helper-vue-jsx-merge-props "^2.0.0"
|
||||||
|
deepmerge "^1.2.0"
|
||||||
|
normalize-wheel "^1.0.1"
|
||||||
|
resize-observer-polyfill "^1.5.0"
|
||||||
|
throttle-debounce "^1.0.1"
|
||||||
|
|
||||||
elliptic@^6.0.0:
|
elliptic@^6.0.0:
|
||||||
version "6.5.2"
|
version "6.5.2"
|
||||||
resolved "https://mirrors.huaweicloud.com/repository/npm/elliptic/-/elliptic-6.5.2.tgz#05c5678d7173c049d8ca433552224a495d0e3762"
|
resolved "https://mirrors.huaweicloud.com/repository/npm/elliptic/-/elliptic-6.5.2.tgz#05c5678d7173c049d8ca433552224a495d0e3762"
|
||||||
@ -5459,6 +5512,11 @@ lodash@^4.15.0, lodash@^4.17.11, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.
|
|||||||
resolved "https://mirrors.huaweicloud.com/repository/npm/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
|
resolved "https://mirrors.huaweicloud.com/repository/npm/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
|
||||||
integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
|
integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
|
||||||
|
|
||||||
|
lodash@^4.2.0:
|
||||||
|
version "4.17.20"
|
||||||
|
resolved "https://registry.npm.taobao.org/lodash/download/lodash-4.17.20.tgz?cache=0&sync_timestamp=1597335994883&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Flodash%2Fdownload%2Flodash-4.17.20.tgz#b44a9b6297bcb698f1c51a3545a2b3b368d59c52"
|
||||||
|
integrity sha1-tEqbYpe8tpjxxRo1RaKzs2jVnFI=
|
||||||
|
|
||||||
longest-streak@^2.0.1:
|
longest-streak@^2.0.1:
|
||||||
version "2.0.4"
|
version "2.0.4"
|
||||||
resolved "https://registry.npm.taobao.org/longest-streak/download/longest-streak-2.0.4.tgz#b8599957da5b5dab64dee3fe316fa774597d90e4"
|
resolved "https://registry.npm.taobao.org/longest-streak/download/longest-streak-2.0.4.tgz#b8599957da5b5dab64dee3fe316fa774597d90e4"
|
||||||
@ -5982,6 +6040,11 @@ normalize-url@^4.1.0:
|
|||||||
resolved "https://mirrors.huaweicloud.com/repository/npm/normalize-url/-/normalize-url-4.5.0.tgz#453354087e6ca96957bd8f5baf753f5982142129"
|
resolved "https://mirrors.huaweicloud.com/repository/npm/normalize-url/-/normalize-url-4.5.0.tgz#453354087e6ca96957bd8f5baf753f5982142129"
|
||||||
integrity sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==
|
integrity sha512-2s47yzUxdexf1OhyRi4Em83iQk0aPvwTddtFz4hnSSw9dCEsLEGf6SwIO8ss/19S9iBb5sJaOuTvTGDeZI00BQ==
|
||||||
|
|
||||||
|
normalize-wheel@^1.0.1:
|
||||||
|
version "1.0.1"
|
||||||
|
resolved "https://registry.npm.taobao.org/normalize-wheel/download/normalize-wheel-1.0.1.tgz#aec886affdb045070d856447df62ecf86146ec45"
|
||||||
|
integrity sha1-rsiGr/2wRQcNhWRH32Ls+GFG7EU=
|
||||||
|
|
||||||
npm-run-path@^4.0.0:
|
npm-run-path@^4.0.0:
|
||||||
version "4.0.1"
|
version "4.0.1"
|
||||||
resolved "https://mirrors.huaweicloud.com/repository/npm/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
|
resolved "https://mirrors.huaweicloud.com/repository/npm/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea"
|
||||||
@ -7725,7 +7788,7 @@ reserved-words@^0.1.2:
|
|||||||
resolved "https://mirrors.huaweicloud.com/repository/npm/reserved-words/-/reserved-words-0.1.2.tgz#00a0940f98cd501aeaaac316411d9adc52b31ab1"
|
resolved "https://mirrors.huaweicloud.com/repository/npm/reserved-words/-/reserved-words-0.1.2.tgz#00a0940f98cd501aeaaac316411d9adc52b31ab1"
|
||||||
integrity sha1-AKCUD5jNUBrqqsMWQR2a3FKzGrE=
|
integrity sha1-AKCUD5jNUBrqqsMWQR2a3FKzGrE=
|
||||||
|
|
||||||
resize-observer-polyfill@^1.5.1:
|
resize-observer-polyfill@^1.5.0, resize-observer-polyfill@^1.5.1:
|
||||||
version "1.5.1"
|
version "1.5.1"
|
||||||
resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464"
|
resolved "https://registry.yarnpkg.com/resize-observer-polyfill/-/resize-observer-polyfill-1.5.1.tgz#0e9020dd3d21024458d4ebd27e23e40269810464"
|
||||||
integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==
|
integrity sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==
|
||||||
@ -8573,6 +8636,11 @@ thread-loader@^2.1.3:
|
|||||||
loader-utils "^1.1.0"
|
loader-utils "^1.1.0"
|
||||||
neo-async "^2.6.0"
|
neo-async "^2.6.0"
|
||||||
|
|
||||||
|
throttle-debounce@^1.0.1:
|
||||||
|
version "1.1.0"
|
||||||
|
resolved "https://registry.npm.taobao.org/throttle-debounce/download/throttle-debounce-1.1.0.tgz?cache=0&sync_timestamp=1597223480635&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fthrottle-debounce%2Fdownload%2Fthrottle-debounce-1.1.0.tgz#51853da37be68a155cb6e827b3514a3c422e89cd"
|
||||||
|
integrity sha1-UYU9o3vmihVctugns1FKPEIuic0=
|
||||||
|
|
||||||
throttle-debounce@^2.0.1:
|
throttle-debounce@^2.0.1:
|
||||||
version "2.2.1"
|
version "2.2.1"
|
||||||
resolved "https://registry.npm.taobao.org/throttle-debounce/download/throttle-debounce-2.2.1.tgz?cache=0&sync_timestamp=1591627153757&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fthrottle-debounce%2Fdownload%2Fthrottle-debounce-2.2.1.tgz#fbd933ae6793448816f7d5b3cae259d464c98137"
|
resolved "https://registry.npm.taobao.org/throttle-debounce/download/throttle-debounce-2.2.1.tgz?cache=0&sync_timestamp=1591627153757&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fthrottle-debounce%2Fdownload%2Fthrottle-debounce-2.2.1.tgz#fbd933ae6793448816f7d5b3cae259d464c98137"
|
||||||
|
Loading…
Reference in New Issue
Block a user