16 lines
325 B
Vue
16 lines
325 B
Vue
<script setup>
|
|
import GanttTest from './components/GanttTest.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="app-wrapper">
|
|
<h1>Gantt 组件演示</h1>
|
|
<GanttTest />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.app-wrapper { padding: 16px; font-family: system-ui, sans-serif; }
|
|
h1 { font-size: 20px; margin-bottom: 12px; }
|
|
</style>
|