remove defineProps import
This commit is contained in:
@@ -8,7 +8,7 @@ const props = defineProps<{
|
||||
sha: string
|
||||
}>()
|
||||
|
||||
const shaProp = computed((props) => props.sha)
|
||||
const shaProp = computed(() => props.sha)
|
||||
|
||||
const { backlink } = useBacklinks(shaProp)
|
||||
const { addStackedNote } = useRouteQueryStackedNotes()
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script setup lang="ts">
|
||||
import { defineProps, withDefaults } from 'vue'
|
||||
import { withDefaults } from 'vue'
|
||||
|
||||
withDefaults(
|
||||
defineProps<{
|
||||
|
||||
Reference in New Issue
Block a user