Skip to content

Commit 89c442a

Browse files
refactor(vue3): drop redundant defineOptions imports
Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
1 parent 3869c46 commit 89c442a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
</template>
2424

2525
<script setup lang="ts">
26-
import { ref, computed, defineOptions } from 'vue'
26+
import { ref, computed } from 'vue'
2727
2828
defineOptions({ name: 'LibreSign' })
2929

src/ExternalApp.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</template>
1313

1414
<script setup lang="ts">
15-
import { computed, defineOptions } from 'vue'
15+
import { computed } from 'vue'
1616
1717
defineOptions({ name: 'LibreSignExternal' })
1818

0 commit comments

Comments
 (0)