build(deps): update deps

This commit is contained in:
Soybean
2022-09-12 23:52:47 +08:00
parent f7ca2782b0
commit d823ee5684
3 changed files with 20 additions and 20 deletions

View File

@ -130,9 +130,9 @@ export function useEcharts(
const stopSizeWatch = watch([width, height], ([newWidth, newHeight]) => {
initialSize.width = newWidth;
initialSize.height = newHeight;
if (newWidth === 0 && newHeight === 0) {
if (newWidth === 0 && newHeight === 0) {
// 节点被删除 将chart置为空
chart = null
chart = null;
}
if (canRender()) {
if (!isRendered()) {

View File

@ -5,7 +5,7 @@
</template>
<script setup lang="ts">
const src = 'https://vitejs.cn/';
const src = 'https://cn.vitejs.dev/';
</script>
<style scoped></style>