chore: install prettier

This commit is contained in:
Viet An
2026-05-04 15:22:27 +07:00
parent 93d29ca7d8
commit bd58e2b847
267 changed files with 22950 additions and 13581 deletions

View File

@@ -2,7 +2,7 @@
const { $shortenCurrency } = useNuxtApp();
const revenueChartOptions = {
chart: {
type: 'spline'
type: "spline",
},
credits: {
enabled: false,
@@ -11,38 +11,38 @@ const revenueChartOptions = {
text: null,
},
xAxis: {
categories: [
'10/4', '11/4', '12/4', '13/4', '14/4', '15/4', '16/4', '17/4', '18/4'
],
categories: ["10/4", "11/4", "12/4", "13/4", "14/4", "15/4", "16/4", "17/4", "18/4"],
accessibility: {
description: 'Dates'
}
description: "Dates",
},
},
yAxis: {
title: {
text: 'Doanh thu'
text: "Doanh thu",
},
labels: {
format: '{value}'
}
format: "{value}",
},
},
tooltip: {
crosshairs: true,
shared: true,
valueSuffix: ' VNĐ',
valueSuffix: " VNĐ",
},
plotOptions: {
spline: {
marker: {
enabled: false
}
}
enabled: false,
},
},
},
series: [{
name: 'Doanh thu',
data: [45000000, 52000000, 48000000, 51000000, 58000000, 61000000, 67500000, 72000000, 69000000],
showInLegend: false,
}]
series: [
{
name: "Doanh thu",
data: [45000000, 52000000, 48000000, 51000000, 58000000, 61000000, 67500000, 72000000, 69000000],
showInLegend: false,
},
],
};
</script>
<template>
@@ -58,4 +58,4 @@ const revenueChartOptions = {
<highcharts :options="revenueChartOptions" />
</div>
</div>
</template>
</template>