Skip to content

Instantly share code, notes, and snippets.

View AlexFirulin's full-sized avatar
🏠
Working from home

AlexFirulin AlexFirulin

🏠
Working from home
View GitHub Profile
<script setup lang="ts">
import type { Tag } from "~/types";
import TagItem from "./TagItem.vue";
interface tagProps {
classBasename?: string;
taggableId?: number;
}
const { classBasename = "Post", taggableId } = defineProps<tagProps>();