This repository has been archived by the owner on Dec 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: enable
script setup
syntax (#542)
- Loading branch information
Showing
6 changed files
with
120 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,9 +46,8 @@ | |
</main> | ||
</template> | ||
|
||
<script> | ||
<script setup> | ||
import { | ||
defineComponent, | ||
ref, | ||
computed, | ||
useFetch, | ||
|
@@ -58,37 +57,22 @@ import ChildComp from '../components/comp.vue' | |
import { fetcher } from '../utils' | ||
export default defineComponent({ | ||
components: { | ||
ChildComp, | ||
}, | ||
setup() { | ||
const name = ref('') | ||
const email = ref('') | ||
const computedProp = computed(() => 'computed') | ||
const name = ref('') | ||
const email = ref('') | ||
const computedProp = computed(() => 'computed') | ||
function myFunction() { | ||
return 'function result' | ||
} | ||
function myFunction() { | ||
return 'function result' | ||
} | ||
useFetch(async () => { | ||
name.value = await fetcher('Full Name') | ||
if (process.client) email.value = await fetcher('[email protected]', 2000) | ||
}) | ||
const ttfb = ref(-1) | ||
onMounted(() => { | ||
ttfb.value = | ||
globalThis.performance.getEntriesByType('navigation')[0].responseStart | ||
}) | ||
useFetch(async () => { | ||
name.value = await fetcher('Full Name') | ||
if (process.client) email.value = await fetcher('[email protected]', 2000) | ||
}) | ||
return { | ||
name, | ||
email, | ||
computedProp, | ||
myFunction, | ||
ttfb, | ||
} | ||
}, | ||
const ttfb = ref(-1) | ||
onMounted(() => { | ||
ttfb.value = | ||
globalThis.performance.getEntriesByType('navigation')[0].responseStart | ||
}) | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,28 +21,28 @@ | |
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.15.0.tgz#2dbaf8b85334796cafbb0f5793a90a2fc010b176" | ||
integrity sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA== | ||
|
||
"@babel/core@^7.1.0", "@babel/core@^7.12.1", "@babel/core@^7.14.0", "@babel/core@^7.7.2", "@babel/core@^7.7.5": | ||
version "7.14.3" | ||
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.3.tgz#5395e30405f0776067fbd9cf0884f15bfb770a38" | ||
integrity sha512-jB5AmTKOCSJIZ72sd78ECEhuPiDMKlQdDI/4QRI6lzYATx5SSogS1oQA2AoPecRCknm30gHi2l+QVvNUu3wZAg== | ||
"@babel/core@^7.1.0", "@babel/core@^7.12.1", "@babel/core@^7.14.0", "@babel/core@^7.15.0", "@babel/core@^7.7.2", "@babel/core@^7.7.5": | ||
version "7.15.0" | ||
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.15.0.tgz#749e57c68778b73ad8082775561f67f5196aafa8" | ||
integrity sha512-tXtmTminrze5HEUPn/a0JtOzzfp0nk+UEXQ/tqIJo3WDGypl/2OFQEMll/zSFU8f/lfmfLXvTaORHF3cfXIQMw== | ||
dependencies: | ||
"@babel/code-frame" "^7.12.13" | ||
"@babel/generator" "^7.14.3" | ||
"@babel/helper-compilation-targets" "^7.13.16" | ||
"@babel/helper-module-transforms" "^7.14.2" | ||
"@babel/helpers" "^7.14.0" | ||
"@babel/parser" "^7.14.3" | ||
"@babel/template" "^7.12.13" | ||
"@babel/traverse" "^7.14.2" | ||
"@babel/types" "^7.14.2" | ||
"@babel/code-frame" "^7.14.5" | ||
"@babel/generator" "^7.15.0" | ||
"@babel/helper-compilation-targets" "^7.15.0" | ||
"@babel/helper-module-transforms" "^7.15.0" | ||
"@babel/helpers" "^7.14.8" | ||
"@babel/parser" "^7.15.0" | ||
"@babel/template" "^7.14.5" | ||
"@babel/traverse" "^7.15.0" | ||
"@babel/types" "^7.15.0" | ||
convert-source-map "^1.7.0" | ||
debug "^4.1.0" | ||
gensync "^1.0.0-beta.2" | ||
json5 "^2.1.2" | ||
semver "^6.3.0" | ||
source-map "^0.5.0" | ||
|
||
"@babel/generator@^7.14.3", "@babel/generator@^7.15.0", "@babel/generator@^7.7.2": | ||
"@babel/generator@^7.15.0", "@babel/generator@^7.7.2": | ||
version "7.15.0" | ||
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.15.0.tgz#a7d0c172e0d814974bad5aa77ace543b97917f15" | ||
integrity sha512-eKl4XdMrbpYvuB505KTta4AV9g+wWzmVBW69tX0H2NwKVKd2YJbKgyK6M8j/rgLbmHOYJn6rUklV677nOyJrEQ== | ||
|
@@ -154,7 +154,7 @@ | |
dependencies: | ||
"@babel/types" "^7.14.5" | ||
|
||
"@babel/helper-module-transforms@^7.14.2", "@babel/helper-module-transforms@^7.14.5", "@babel/helper-module-transforms@^7.15.0": | ||
"@babel/helper-module-transforms@^7.14.5", "@babel/helper-module-transforms@^7.15.0": | ||
version "7.15.0" | ||
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.15.0.tgz#679275581ea056373eddbe360e1419ef23783b08" | ||
integrity sha512-RkGiW5Rer7fpXv9m1B3iHIFDZdItnO2/BLfWVW/9q7+KqQSDY5kUfQEbzdXM1MVhJGcugKV7kRrNVzNxmk7NBg== | ||
|
@@ -240,14 +240,14 @@ | |
"@babel/traverse" "^7.14.5" | ||
"@babel/types" "^7.14.5" | ||
|
||
"@babel/helpers@^7.14.0": | ||
version "7.14.0" | ||
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.14.0.tgz#ea9b6be9478a13d6f961dbb5f36bf75e2f3b8f62" | ||
integrity sha512-+ufuXprtQ1D1iZTO/K9+EBRn+qPWMJjZSw/S0KlFrxCw4tkrzv9grgpDHkY9MeQTjTY8i2sp7Jep8DfU6tN9Mg== | ||
"@babel/helpers@^7.14.8": | ||
version "7.15.3" | ||
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.15.3.tgz#c96838b752b95dcd525b4e741ed40bb1dc2a1357" | ||
integrity sha512-HwJiz52XaS96lX+28Tnbu31VeFSQJGOeKHJeaEPQlTl7PnlhFElWPj8tUXtqFIzeN86XxXoBr+WFAyK2PPVz6g== | ||
dependencies: | ||
"@babel/template" "^7.12.13" | ||
"@babel/traverse" "^7.14.0" | ||
"@babel/types" "^7.14.0" | ||
"@babel/template" "^7.14.5" | ||
"@babel/traverse" "^7.15.0" | ||
"@babel/types" "^7.15.0" | ||
|
||
"@babel/highlight@^7.10.4", "@babel/highlight@^7.14.5": | ||
version "7.14.5" | ||
|
@@ -258,7 +258,7 @@ | |
chalk "^2.0.0" | ||
js-tokens "^4.0.0" | ||
|
||
"@babel/parser@^7.1.0", "@babel/parser@^7.14.3", "@babel/parser@^7.14.5", "@babel/parser@^7.15.0", "@babel/parser@^7.7.2": | ||
"@babel/parser@^7.1.0", "@babel/parser@^7.14.5", "@babel/parser@^7.15.0", "@babel/parser@^7.15.3", "@babel/parser@^7.7.2": | ||
version "7.15.3" | ||
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.15.3.tgz#3416d9bea748052cfcb63dbcc27368105b1ed862" | ||
integrity sha512-O0L6v/HvqbdJawj0iBEfVQMc3/6WP+AeOsovsIgBFyJaG+W2w7eqvZB7puddATmWuARlm1SX7DwxJ/JJUnDpEA== | ||
|
@@ -986,7 +986,7 @@ | |
dependencies: | ||
regenerator-runtime "^0.13.4" | ||
|
||
"@babel/template@^7.12.13", "@babel/template@^7.14.5", "@babel/template@^7.3.3": | ||
"@babel/template@^7.14.5", "@babel/template@^7.3.3": | ||
version "7.14.5" | ||
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.14.5.tgz#a9bc9d8b33354ff6e55a9c60d1109200a68974f4" | ||
integrity sha512-6Z3Po85sfxRGachLULUhOmvAaOo7xCvqGQtxINai2mEGPFm6pQ4z5QInFnUrRpfoSV60BnjyF5F3c+15fxFV1g== | ||
|
@@ -995,7 +995,7 @@ | |
"@babel/parser" "^7.14.5" | ||
"@babel/types" "^7.14.5" | ||
|
||
"@babel/traverse@^7.1.0", "@babel/traverse@^7.13.0", "@babel/traverse@^7.14.0", "@babel/traverse@^7.14.2", "@babel/traverse@^7.14.5", "@babel/traverse@^7.15.0", "@babel/traverse@^7.7.2": | ||
"@babel/traverse@^7.1.0", "@babel/traverse@^7.13.0", "@babel/traverse@^7.14.5", "@babel/traverse@^7.15.0", "@babel/traverse@^7.7.2": | ||
version "7.15.0" | ||
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.15.0.tgz#4cca838fd1b2a03283c1f38e141f639d60b3fc98" | ||
integrity sha512-392d8BN0C9eVxVWd8H6x9WfipgVH5IaIoLp23334Sc1vbKKWINnvwRpb4us0xtPaCumlwbTtIYNA0Dv/32sVFw== | ||
|
@@ -1010,7 +1010,7 @@ | |
debug "^4.1.0" | ||
globals "^11.1.0" | ||
|
||
"@babel/types@^7.0.0", "@babel/types@^7.14.0", "@babel/types@^7.14.2", "@babel/types@^7.14.5", "@babel/types@^7.14.8", "@babel/types@^7.15.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": | ||
"@babel/types@^7.0.0", "@babel/types@^7.14.2", "@babel/types@^7.14.5", "@babel/types@^7.14.8", "@babel/types@^7.15.0", "@babel/types@^7.3.0", "@babel/types@^7.3.3", "@babel/types@^7.4.4": | ||
version "7.15.0" | ||
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.15.0.tgz#61af11f2286c4e9c69ca8deb5f4375a73c72dcbd" | ||
integrity sha512-OBvfqnllOIdX4ojTHpwZbpvz4j3EWyjkZEdmjH0/cgsd6QOdSgU8rLSk6ard/pcW7rlmjdVSX/AWOaORR1uNOQ== | ||
|
@@ -1248,7 +1248,7 @@ | |
source-map "^0.6.1" | ||
write-file-atomic "^3.0.0" | ||
|
||
"@jest/types@^27.0.6", "@jest/types@^27.1.0": | ||
"@jest/types@^27.1.0": | ||
version "27.1.0" | ||
resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.1.0.tgz#674a40325eab23c857ebc0689e7e191a3c5b10cc" | ||
integrity sha512-pRP5cLIzN7I7Vp6mHKRSaZD7YpBTK7hawx5si8trMKqk4+WOdK8NEKOTO2G8PKWD1HbKMVckVB6/XHh/olhf2g== | ||
|
@@ -2437,14 +2437,6 @@ | |
"@typescript-eslint/typescript-estree" "4.30.0" | ||
debug "^4.3.1" | ||
|
||
"@typescript-eslint/[email protected]": | ||
version "4.29.2" | ||
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.29.2.tgz#442b0f029d981fa402942715b1718ac7fcd5aa1b" | ||
integrity sha512-mfHmvlQxmfkU8D55CkZO2sQOueTxLqGvzV+mG6S/6fIunDiD2ouwsAoiYCZYDDK73QCibYjIZmGhpvKwAB5BOA== | ||
dependencies: | ||
"@typescript-eslint/types" "4.29.2" | ||
"@typescript-eslint/visitor-keys" "4.29.2" | ||
|
||
"@typescript-eslint/[email protected]": | ||
version "4.30.0" | ||
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.30.0.tgz#1a3ffbb385b1a06be85cd5165a22324f069a85ee" | ||
|
@@ -2453,29 +2445,11 @@ | |
"@typescript-eslint/types" "4.30.0" | ||
"@typescript-eslint/visitor-keys" "4.30.0" | ||
|
||
"@typescript-eslint/[email protected]": | ||
version "4.29.2" | ||
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.29.2.tgz#fc0489c6b89773f99109fb0aa0aaddff21f52fcd" | ||
integrity sha512-K6ApnEXId+WTGxqnda8z4LhNMa/pZmbTFkDxEBLQAbhLZL50DjeY0VIDCml/0Y3FlcbqXZrABqrcKxq+n0LwzQ== | ||
|
||
"@typescript-eslint/[email protected]": | ||
version "4.30.0" | ||
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.30.0.tgz#fb9d9b0358426f18687fba82eb0b0f869780204f" | ||
integrity sha512-YKldqbNU9K4WpTNwBqtAerQKLLW/X2A/j4yw92e3ZJYLx+BpKLeheyzoPfzIXHfM8BXfoleTdiYwpsvVPvHrDw== | ||
|
||
"@typescript-eslint/[email protected]": | ||
version "4.29.2" | ||
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.29.2.tgz#a0ea8b98b274adbb2577100ba545ddf8bf7dc219" | ||
integrity sha512-TJ0/hEnYxapYn9SGn3dCnETO0r+MjaxtlWZ2xU+EvytF0g4CqTpZL48SqSNn2hXsPolnewF30pdzR9a5Lj3DNg== | ||
dependencies: | ||
"@typescript-eslint/types" "4.29.2" | ||
"@typescript-eslint/visitor-keys" "4.29.2" | ||
debug "^4.3.1" | ||
globby "^11.0.3" | ||
is-glob "^4.0.1" | ||
semver "^7.3.5" | ||
tsutils "^3.21.0" | ||
|
||
"@typescript-eslint/[email protected]": | ||
version "4.30.0" | ||
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.30.0.tgz#ae57833da72a753f4846cd3053758c771670c2ac" | ||
|
@@ -2489,14 +2463,6 @@ | |
semver "^7.3.5" | ||
tsutils "^3.21.0" | ||
|
||
"@typescript-eslint/[email protected]": | ||
version "4.29.2" | ||
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.29.2.tgz#d2da7341f3519486f50655159f4e5ecdcb2cd1df" | ||
integrity sha512-bDgJLQ86oWHJoZ1ai4TZdgXzJxsea3Ee9u9wsTAvjChdj2WLcVsgWYAPeY7RQMn16tKrlQaBnpKv7KBfs4EQag== | ||
dependencies: | ||
"@typescript-eslint/types" "4.29.2" | ||
eslint-visitor-keys "^2.0.0" | ||
|
||
"@typescript-eslint/[email protected]": | ||
version "4.30.0" | ||
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.30.0.tgz#a47c6272fc71b0c627d1691f68eaecf4ad71445e" | ||
|
@@ -2585,6 +2551,17 @@ | |
"@vue/babel-plugin-transform-vue-jsx" "^1.2.1" | ||
camelcase "^5.0.0" | ||
|
||
"@vue/[email protected]": | ||
version "3.2.6" | ||
resolved "https://registry.yarnpkg.com/@vue/compiler-core/-/compiler-core-3.2.6.tgz#7162bb0670273f04566af0d353009187ab577915" | ||
integrity sha512-vbwnz7+OhtLO5p5i630fTuQCL+MlUpEMTKHuX+RfetQ+3pFCkItt2JUH+9yMaBG2Hkz6av+T9mwN/acvtIwpbw== | ||
dependencies: | ||
"@babel/parser" "^7.15.0" | ||
"@babel/types" "^7.15.0" | ||
"@vue/shared" "3.2.6" | ||
estree-walker "^2.0.2" | ||
source-map "^0.6.1" | ||
|
||
"@vue/component-compiler-utils@^3.1.0": | ||
version "3.2.0" | ||
resolved "https://registry.yarnpkg.com/@vue/component-compiler-utils/-/component-compiler-utils-3.2.0.tgz#8f85182ceed28e9b3c75313de669f83166d11e5d" | ||
|
@@ -2608,6 +2585,22 @@ | |
dependencies: | ||
tslib "^2.3.0" | ||
|
||
"@vue/ref-transform@^3.2.6": | ||
version "3.2.6" | ||
resolved "https://registry.yarnpkg.com/@vue/ref-transform/-/ref-transform-3.2.6.tgz#30b5f1fa77daf9894bc23e6a5a0e3586a4a796b8" | ||
integrity sha512-ie39+Y4nbirDLvH+WEq6Eo/l3n3mFATayqR+kEMSphrtMW6Uh/eEMx1Gk2Jnf82zmj3VLRq7dnmPx72JLcBYkQ== | ||
dependencies: | ||
"@babel/parser" "^7.15.0" | ||
"@vue/compiler-core" "3.2.6" | ||
"@vue/shared" "3.2.6" | ||
estree-walker "^2.0.2" | ||
magic-string "^0.25.7" | ||
|
||
"@vue/[email protected]", "@vue/shared@^3.2.6": | ||
version "3.2.6" | ||
resolved "https://registry.yarnpkg.com/@vue/shared/-/shared-3.2.6.tgz#2c22bae88fe2b7b59fa68a9c9c4cd60bae2c1794" | ||
integrity sha512-uwX0Qs2e6kdF+WmxwuxJxOnKs/wEkMArtYpHSm7W+VY/23Tl8syMRyjnzEeXrNCAP0/8HZxEGkHJsjPEDNRuHw== | ||
|
||
"@webassemblyjs/[email protected]": | ||
version "1.9.0" | ||
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964" | ||
|
@@ -5290,10 +5283,10 @@ domutils@^1.5.1, domutils@^1.7.0: | |
dom-serializer "0" | ||
domelementtype "1" | ||
|
||
domutils@^2.4.3: | ||
version "2.7.0" | ||
resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.7.0.tgz#8ebaf0c41ebafcf55b0b72ec31c56323712c5442" | ||
integrity sha512-8eaHa17IwJUPAiB+SoTYBo5mCdeMgdcAoXJ59m6DT1vw+5iLS3gNoqYaRowaBKtGVrOF1Jz4yDTgYKLK2kvfJg== | ||
domutils@^2.4.3, domutils@^2.5.2: | ||
version "2.8.0" | ||
resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" | ||
integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== | ||
dependencies: | ||
dom-serializer "^1.0.1" | ||
domelementtype "^2.2.0" | ||
|
@@ -6906,6 +6899,16 @@ htmlparser2@^3.10.1: | |
inherits "^2.0.1" | ||
readable-stream "^3.1.1" | ||
|
||
htmlparser2@^6.1.0: | ||
version "6.1.0" | ||
resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.1.0.tgz#c4d762b6c3371a05dbe65e94ae43a9f845fb8fb7" | ||
integrity sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A== | ||
dependencies: | ||
domelementtype "^2.0.1" | ||
domhandler "^4.0.0" | ||
domutils "^2.5.2" | ||
entities "^2.0.0" | ||
|
||
http-cache-semantics@^4.0.0, http-cache-semantics@^4.1.0: | ||
version "4.1.0" | ||
resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390" | ||
|
@@ -10871,7 +10874,7 @@ pretty-error@^2.1.1: | |
lodash "^4.17.20" | ||
renderkid "^2.0.4" | ||
|
||
pretty-format@^27.0.0, pretty-format@^27.0.6, pretty-format@^27.1.0: | ||
pretty-format@^27.0.0, pretty-format@^27.1.0: | ||
version "27.1.0" | ||
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.1.0.tgz#022f3fdb19121e0a2612f3cff8d724431461b9ca" | ||
integrity sha512-4aGaud3w3rxAO6OXmK3fwBFQ0bctIOG3/if+jYEFGNGIs0EvuidQm3bZ9mlP2/t9epLNC/12czabfy7TZNSwVA== | ||
|
@@ -13425,6 +13428,30 @@ unpipe@~1.0.0: | |
resolved "https://registry.yarnpkg.com/unpipe/-/unpipe-1.0.0.tgz#b2bf4ee8514aae6165b4817829d21b2ef49904ec" | ||
integrity sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw= | ||
|
||
unplugin-vue2-script-setup@^0.5.5: | ||
version "0.5.5" | ||
resolved "https://registry.yarnpkg.com/unplugin-vue2-script-setup/-/unplugin-vue2-script-setup-0.5.5.tgz#55bf0ff63f282e8b84b3d7b90bd9656598a3fe51" | ||
integrity sha512-Ii1b0yo4D5iOWU4oj7InFIVtB1rQ+/OfFLjB4DCIiwmrCM6bfKXITqcovPcyQFv6iMk9/7MurOJQS1mRgCXe8Q== | ||
dependencies: | ||
"@babel/core" "^7.15.0" | ||
"@babel/generator" "^7.15.0" | ||
"@babel/parser" "^7.15.3" | ||
"@babel/traverse" "^7.15.0" | ||
"@babel/types" "^7.15.0" | ||
"@vue/ref-transform" "^3.2.6" | ||
"@vue/shared" "^3.2.6" | ||
htmlparser2 "^6.1.0" | ||
magic-string "^0.25.7" | ||
unplugin "^0.2.6" | ||
|
||
unplugin@^0.2.6: | ||
version "0.2.6" | ||
resolved "https://registry.yarnpkg.com/unplugin/-/unplugin-0.2.6.tgz#dad901588532fa7da8c4b52221b98bfd5608a463" | ||
integrity sha512-eNDgjSWcDhGMn8W308kYkFP8OkaiiIKtVgTGL+VkhNhzypL1aCRMVZS4U0reqzyls0cTMWLB0sggXBo0Q3XLng== | ||
dependencies: | ||
upath "^2.0.1" | ||
webpack-virtual-modules "^0.4.3" | ||
|
||
unquote@^1.1.1, unquote@~1.1.1: | ||
version "1.1.1" | ||
resolved "https://registry.yarnpkg.com/unquote/-/unquote-1.1.1.tgz#8fded7324ec6e88a0ff8b905e7c098cdc086d544" | ||
|
@@ -13844,6 +13871,11 @@ webpack-sources@^1.0.1, webpack-sources@^1.1.0, webpack-sources@^1.4.0, webpack- | |
source-list-map "^2.0.0" | ||
source-map "~0.6.1" | ||
|
||
webpack-virtual-modules@^0.4.3: | ||
version "0.4.3" | ||
resolved "https://registry.yarnpkg.com/webpack-virtual-modules/-/webpack-virtual-modules-0.4.3.tgz#cd597c6d51d5a5ecb473eea1983a58fa8a17ded9" | ||
integrity sha512-5NUqC2JquIL2pBAAo/VfBP6KuGkHIZQXW/lNKupLPfhViwh8wNsu0BObtl09yuKZszeEUfbXz8xhrHvSG16Nqw== | ||
|
||
webpack@^4.46.0: | ||
version "4.46.0" | ||
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.46.0.tgz#bf9b4404ea20a073605e0a011d188d77cb6ad542" | ||
|