Skip to content

Commit

Permalink
refactor: defineProps import no longer needed
Browse files Browse the repository at this point in the history
  • Loading branch information
AlitaBernachot committed Dec 17, 2024
1 parent 33cc328 commit 55d9809
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/info/feature-info.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { defineProps, onUnmounted } from 'vue'
import { onUnmounted } from 'vue'
import DefaultTemplate from '@/components/info/templates/default-template.vue'
import LignesBusTemplate from './templates/lignes-bus-template.vue'
import {
Expand Down
1 change: 0 additions & 1 deletion src/components/info/templates/default-template.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<script setup lang="ts">
import { defineProps } from 'vue'
import {
AttributeEntry,
FeatureInfoJSON,
Expand Down
2 changes: 1 addition & 1 deletion src/components/info/templates/lignes-bus-template.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script setup lang="ts">
import { FeatureInfoJSON } from '@/services/info/feature-info.model'
import { defineProps } from 'vue'
defineProps({
layers: {
type: Object as () => FeatureInfoJSON,
Expand Down

0 comments on commit 55d9809

Please sign in to comment.