28 lines
594 B
Vue
28 lines
594 B
Vue
<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> |