Skip to content

Commit 3a15b9b

Browse files
linting fixes
1 parent 025a408 commit 3a15b9b

File tree

4 files changed

+2
-8
lines changed

4 files changed

+2
-8
lines changed

playground/src/pages/Components/chart.vue

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
<v-col cols="12" sm="6">
88
<v-card variant="flat">
99
<v-card-item>
10-
<highcharts :options="chartOptions1"></highcharts>
10+
<highcharts :options="chartOptions1" />
1111
</v-card-item>
1212
</v-card>
1313
</v-col>
1414
<v-col cols="12" sm="6">
1515
<v-card variant="flat">
1616
<v-card-item>
17-
<highcharts :options="chartOptions"></highcharts>
17+
<highcharts :options="chartOptions" />
1818
</v-card-item>
1919
</v-card>
2020
</v-col>
@@ -168,7 +168,6 @@ const chartOptions1 = ref({
168168
},
169169
],
170170
})
171-
172171
</script>
173172

174173
<style lang="scss" scoped></style>

playground/src/pages/Components/geoman.vue

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
</template>
2020

2121
<script setup lang="ts">
22-
import type L from 'leaflet'
2322
import { LMap, LTileLayer } from '@vue-leaflet/vue-leaflet'
2423
import type { PointExpression } from 'leaflet'
2524
import { ref } from 'vue'
@@ -53,7 +52,6 @@ const hookUpDraw = async () => {
5352
console.log(geofence)
5453
})
5554
}
56-
5755
</script>
5856

5957
<style scoped></style>

playground/src/pages/Components/splitmap.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ const afterMapReady = () => {
6262
console.error('Error initializing SplitMap control:', error)
6363
}
6464
}
65-
6665
</script>
6766

6867
<style lang="scss"></style>

src/runtime/plugins/highcharts.client.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,5 @@
11
import { defineNuxtPlugin } from '#app'
2-
import Highcharts from 'highcharts'
32
import HighchartsVue from 'highcharts-vue'
4-
import stockInit from 'highcharts/modules/stock'
53

64
export default defineNuxtPlugin({
75
name: 'highcharts-vue',

0 commit comments

Comments
 (0)