This commit is contained in:
syuilo 2023-01-06 20:19:27 +09:00
parent 3551ac328e
commit 70805e00eb
4 changed files with 57 additions and 12 deletions

View file

@ -1,7 +1,7 @@
<template>
<div ref="rootEl">
<MkLoading v-if="fetching"/>
<div v-else>
<div v-else :class="$style.root" class="_panel">
<canvas ref="chartEl"></canvas>
</div>
</div>
@ -205,3 +205,9 @@ onMounted(async () => {
renderChart();
});
</script>
<style lang="scss" module>
.root {
padding: 20px;
}
</style>