34 lines
818 B
Vue
34 lines
818 B
Vue
<script setup lang="ts">
|
|
definePageMeta({
|
|
layout: 'default',
|
|
})
|
|
import {
|
|
Play,
|
|
Download,
|
|
} from "lucide-vue-next";
|
|
// const route = useRoute<'publishDetails-id'>()
|
|
|
|
// const id = route.params.id
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex justify-center">
|
|
<div class="w-[1125px]">
|
|
<div class="flex items-center">
|
|
<div class="text-[26px] font-bold mr-2">名称</div>
|
|
<component :is="Play" class="h-[14px] w-[14px] text-white menu-icon m-1" />
|
|
<span>
|
|
<!-- {{ item.reals }} -->0
|
|
</span>
|
|
<component
|
|
:is="Download"
|
|
class="h-[14px] w-[14px] text-white menu-icon m-1"
|
|
/>
|
|
<span>
|
|
<!-- {{ item.numbers }} -->0
|
|
</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|