单应用项目,可以创建很多独立工具类页面 ,不用登录 初始化的页面
zhangchen
2025-07-08 87a971f080881598bc2380d5f72252be88ab8982
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<template>
  <div class="unplanned-schedule-container"></div>
</template>
 
<script lang="ts" setup name="UnplannedSchedule">
interface Props {
    height: number;
}
const props = defineProps<Props>();
 
// @ts-ignore
import Card from './Card.vue';
</script>
 
<style lang="less" scoped>
.unplanned-schedule-container {
 
}
</style>