remove defineProps import

This commit is contained in:
Julien Calixte
2024-01-09 23:44:04 +01:00
parent 4551806b0d
commit eca44b3e76
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ const props = defineProps<{
sha: string sha: string
}>() }>()
const shaProp = computed((props) => props.sha) const shaProp = computed(() => props.sha)
const { backlink } = useBacklinks(shaProp) const { backlink } = useBacklinks(shaProp)
const { addStackedNote } = useRouteQueryStackedNotes() const { addStackedNote } = useRouteQueryStackedNotes()

View File

@@ -1,5 +1,5 @@
<script setup lang="ts"> <script setup lang="ts">
import { defineProps, withDefaults } from 'vue' import { withDefaults } from 'vue'
withDefaults( withDefaults(
defineProps<{ defineProps<{