fix chartjs
Some checks failed
Deploy / deploy (push) Has been cancelled

This commit is contained in:
2025-09-24 01:39:35 +08:00
parent 1686d68fca
commit bffb6c6166
3 changed files with 27 additions and 37 deletions

View File

@@ -1,32 +0,0 @@
import {
ArcElement,
BarElement,
CategoryScale,
Chart as ChartJS,
Colors,
Legend,
LinearScale,
Title,
Tooltip,
LineElement,
PointElement,
} from "chart.js"
const [isLoaded] = useToggle()
export function loadChart() {
if (isLoaded.value) return
ChartJS.register(
CategoryScale,
LinearScale,
BarElement,
ArcElement,
LineElement,
PointElement,
Colors,
Title,
Tooltip,
Legend,
)
isLoaded.value = true
}