feat:导出功能重构

This commit is contained in:
liailing1026
2026-03-11 17:46:42 +08:00
parent 14b79bc282
commit 26c42697e8
20 changed files with 4070 additions and 126 deletions

View File

@@ -1,9 +1,16 @@
<script setup lang="ts">
import { useRoute } from 'vue-router'
import Layout from './layout/index.vue'
import Share from './views/Share.vue'
const route = useRoute()
</script>
<template>
<Layout />
<!-- 分享页面使用独立布局 -->
<Share v-if="route.path.startsWith('/share/')" />
<!-- 其他页面使用主布局 -->
<Layout v-else />
</template>
<style lang="scss">