This commit is contained in:
2023-12-02 13:09:23 +01:00
parent 098bc97fa4
commit 45da05c9a4
46 changed files with 2889 additions and 5793 deletions

View File

@@ -0,0 +1,28 @@
<script setup>
/*import '@bryntum/scheduler'
import { BryntumScheduler } from '@bryntum/scheduler-vue-3'
import '@bryntum/scheduler/scheduler.material.css'
const config = reactive({
startDate: new Date(2024,0,1,6),
endDate: new Date(2024,0,1,20),
viewPreset: "hourAndDay",
rowHeight: 50,
columns: [{text: "Name", field: "name", width: 130}]
})*/
</script>
<template>
<div>
<!-- <bryntum-scheduler
:width="800"
:height="600"
start-date="2023-04-16"
end-date="2023-05-15"
></bryntum-scheduler>-->
</div>
</template>
<style scoped>
</style>