File tree Expand file tree Collapse file tree 20 files changed +20
-20
lines changed Expand file tree Collapse file tree 20 files changed +20
-20
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export type BarChartProps = Writeable<
99
1010const BarChart = defineComponent < BarChartProps > ( {
1111 name : 'BarChart' ,
12- setup : ( props , ctx ) => {
12+ setup ( props , ctx ) {
1313 return ( ) => < BaseChart chart = { Bar } { ...ctx . attrs } { ...props } />
1414 } ,
1515} )
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export type BulletChartProps = Writeable<
99
1010const BulletChart = defineComponent < BulletChartProps > ( {
1111 name : 'BulletChart' ,
12- setup : ( props , ctx ) => {
12+ setup ( props , ctx ) {
1313 return ( ) => < BaseChart chart = { Bullet } { ...ctx . attrs } { ...props } />
1414 } ,
1515} )
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export type ColumnChartProps = Writeable<
99
1010const ColumnChart = defineComponent < ColumnChartProps > ( {
1111 name : 'ColumnChart' ,
12- setup : ( props , ctx ) => {
12+ setup ( props , ctx ) {
1313 return ( ) => < BaseChart chart = { Column } { ...ctx . attrs } { ...props } />
1414 } ,
1515} )
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export type FunnelChartProps = Writeable<
99
1010const FunnelChart = defineComponent < FunnelChartProps > ( {
1111 name : 'FunnelChart' ,
12- setup : ( props , ctx ) => {
12+ setup ( props , ctx ) {
1313 return ( ) => < BaseChart chart = { Funnel } { ...ctx . attrs } { ...props } />
1414 } ,
1515} )
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export type GaugeChartProps = Writeable<
99
1010const GaugeChart = defineComponent < GaugeChartProps > ( {
1111 name : 'GaugeChart' ,
12- setup : ( props , ctx ) => {
12+ setup ( props , ctx ) {
1313 return ( ) => < BaseChart chart = { Gauge } { ...ctx . attrs } { ...props } />
1414 } ,
1515} )
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export type HeatmapChartProps = Writeable<
99
1010const HeatmapChart = defineComponent < HeatmapChartProps > ( {
1111 name : 'HeatmapChart' ,
12- setup : ( props , ctx ) => {
12+ setup ( props , ctx ) {
1313 return ( ) => < BaseChart chart = { Heatmap } { ...ctx . attrs } { ...props } />
1414 } ,
1515} )
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export type HistogramChartProps = Writeable<
99
1010const HistogramChart = defineComponent < HistogramChartProps > ( {
1111 name : 'HistogramChart' ,
12- setup : ( props , ctx ) => {
12+ setup ( props , ctx ) {
1313 return ( ) => < BaseChart chart = { Histogram } { ...ctx . attrs } { ...props } />
1414 } ,
1515} )
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export type LineChartProps = Writeable<
99
1010const LineChart = defineComponent < LineChartProps > ( {
1111 name : 'LineChart' ,
12- setup : ( props , ctx ) => {
12+ setup ( props , ctx ) {
1313 return ( ) => < BaseChart chart = { Line } { ...ctx . attrs } { ...props } />
1414 } ,
1515} )
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export type LiquidChartProps = Writeable<
99
1010const LiquidChart = defineComponent < LiquidChartProps > ( {
1111 name : 'LiquidChart' ,
12- setup : ( props , ctx ) => {
12+ setup ( props , ctx ) {
1313 return ( ) => < BaseChart chart = { Liquid } { ...ctx . attrs } { ...props } />
1414 } ,
1515} )
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export type PieChartProps = Writeable<
99
1010const PieChart = defineComponent < PieChartProps > ( {
1111 name : 'PieChart' ,
12- setup : ( props , ctx ) => {
12+ setup ( props , ctx ) {
1313 return ( ) => < BaseChart chart = { Pie } { ...ctx . attrs } { ...props } />
1414 } ,
1515} )
You can’t perform that action at this time.
0 commit comments