mirror of
https://github.com/ecomfe/vue-echarts.git
synced 2025-10-28 03:25:02 +08:00
fix: revert to esbuild-wasm@0.19.2
This commit is contained in:
@ -48,7 +48,7 @@
|
|||||||
"echarts": "^5.4.3",
|
"echarts": "^5.4.3",
|
||||||
"echarts-gl": "^2.0.9",
|
"echarts-gl": "^2.0.9",
|
||||||
"echarts-liquidfill": "^3.1.0",
|
"echarts-liquidfill": "^3.1.0",
|
||||||
"esbuild-wasm": "^0.19.5",
|
"esbuild-wasm": "^0.19.2",
|
||||||
"eslint": "^7.32.0",
|
"eslint": "^7.32.0",
|
||||||
"eslint-plugin-prettier": "^3.4.1",
|
"eslint-plugin-prettier": "^3.4.1",
|
||||||
"eslint-plugin-vue": "^8.7.1",
|
"eslint-plugin-vue": "^8.7.1",
|
||||||
|
|||||||
8
pnpm-lock.yaml
generated
8
pnpm-lock.yaml
generated
@ -80,8 +80,8 @@ devDependencies:
|
|||||||
specifier: ^3.1.0
|
specifier: ^3.1.0
|
||||||
version: 3.1.0(echarts@5.4.3)
|
version: 3.1.0(echarts@5.4.3)
|
||||||
esbuild-wasm:
|
esbuild-wasm:
|
||||||
specifier: ^0.19.5
|
specifier: ^0.19.2
|
||||||
version: 0.19.5
|
version: 0.19.2
|
||||||
eslint:
|
eslint:
|
||||||
specifier: ^7.32.0
|
specifier: ^7.32.0
|
||||||
version: 7.32.0
|
version: 7.32.0
|
||||||
@ -4239,8 +4239,8 @@ packages:
|
|||||||
resolution: {integrity: sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==}
|
resolution: {integrity: sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==}
|
||||||
dev: true
|
dev: true
|
||||||
|
|
||||||
/esbuild-wasm@0.19.5:
|
/esbuild-wasm@0.19.2:
|
||||||
resolution: {integrity: sha512-7zmLLn2QCj93XfMmHtzrDJ1UBuOHB2CZz1ghoCEZiRajxjUvHsF40PnbzFIY/pmesqPRaEtEWii0uzsTbnAgrA==}
|
resolution: {integrity: sha512-ak2XIIJKby+Uo3Iqh8wtw4pn2uZcnfLgtcmBHIgkShpun5ZIJsFigWXp7uLt7gXk3QAOCMmv0TSsIxD5qdn+Vw==}
|
||||||
engines: {node: '>=12'}
|
engines: {node: '>=12'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
dev: true
|
dev: true
|
||||||
|
|||||||
@ -81,6 +81,42 @@ onMounted(async () => {
|
|||||||
|
|
||||||
initializing.value = false;
|
initializing.value = false;
|
||||||
|
|
||||||
|
optionCode.value = `{
|
||||||
|
title: {
|
||||||
|
text: 'Referer of a Website',
|
||||||
|
subtext: 'Fake Data',
|
||||||
|
left: 'center'
|
||||||
|
},
|
||||||
|
tooltip: {
|
||||||
|
trigger: 'item'
|
||||||
|
},
|
||||||
|
legend: {
|
||||||
|
orient: 'vertical',
|
||||||
|
left: 'left'
|
||||||
|
},
|
||||||
|
series: [
|
||||||
|
{
|
||||||
|
name: 'Access From',
|
||||||
|
type: 'pie',
|
||||||
|
radius: '50%',
|
||||||
|
data: [
|
||||||
|
{ value: 1048, name: 'Search Engine' },
|
||||||
|
{ value: 735, name: 'Direct' },
|
||||||
|
{ value: 580, name: 'Email' },
|
||||||
|
{ value: 484, name: 'Union Ads' },
|
||||||
|
{ value: 300, name: 'Video Ads' }
|
||||||
|
],
|
||||||
|
emphasis: {
|
||||||
|
itemStyle: {
|
||||||
|
shadowBlur: 10,
|
||||||
|
shadowOffsetX: 0,
|
||||||
|
shadowColor: 'rgba(0, 0, 0, 0.5)'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}`;
|
||||||
|
|
||||||
await nextTick();
|
await nextTick();
|
||||||
|
|
||||||
source.value?.focus();
|
source.value?.focus();
|
||||||
@ -238,6 +274,7 @@ onBeforeUnmount(() => {
|
|||||||
"
|
"
|
||||||
:disabled="initializing"
|
:disabled="initializing"
|
||||||
autofocus
|
autofocus
|
||||||
|
spellcheck="false"
|
||||||
></textarea>
|
></textarea>
|
||||||
<div class="import-code" @copy="trackCopy('system')">
|
<div class="import-code" @copy="trackCopy('system')">
|
||||||
<code-highlight
|
<code-highlight
|
||||||
|
|||||||
Reference in New Issue
Block a user