remove defineProps import
This commit is contained in:
@@ -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()
|
||||||
|
|||||||
@@ -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<{
|
||||||
|
|||||||
Reference in New Issue
Block a user