Skip to content

Commit

Permalink
refactor(front): remove useless defineModel import
Browse files Browse the repository at this point in the history
Since Vue.js 3.5, defineModel is a compiler macro and no longer needs to
be imported.
  • Loading branch information
rezib committed Jan 30, 2025
1 parent 924f06b commit 299ce69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/resources/ResourcesCanvas.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
SPDX-License-Identifier: GPL-3.0-or-later
-->
<script setup lang="ts">
import { onMounted, onUnmounted, ref, useTemplateRef, watch, defineModel, nextTick } from 'vue'
import { onMounted, onUnmounted, ref, useTemplateRef, watch, nextTick } from 'vue'
import type { Ref } from 'vue'
import { useRuntimeStore } from '@/stores/runtime'
import { useGatewayAPI } from '@/composables/GatewayAPI'
Expand Down

0 comments on commit 299ce69

Please sign in to comment.