Files
FiDA_Front/src/views/canvas/index.vue
2026-02-06 16:23:22 +08:00

36 lines
831 B
Vue

<template>
<div class="canvas">
<card type="to-real-style" />
<card type="scene-composition" />
<card type="color-palette" />
<card type="to-video" />
<card type="to-3d-model" />
<card type="add-print" />
<card type="edit-material" />
</div>
</template>
<script setup lang="ts">
import card from './components/card.vue'
import { computed, ref, markRaw, onMounted } from 'vue'
import { useGlobalStore } from '@/stores'
import { useRouter, useRoute } from 'vue-router'
const router = useRouter()
const route = useRoute()
const globalStore = useGlobalStore()
onMounted(() => {
globalStore.setHomeLeftNavCollapse(true)
})
</script>
<style lang="less" scoped>
.canvas {
background-color: #fcf8f1;
display: flex;
flex-wrap: wrap;
align-content: flex-start;
padding: 2rem;
gap: 2rem;
}
</style>