Skip to content
Snippets Groups Projects
Commit 505b5a8e authored by Konrad Mohrfeldt's avatar Konrad Mohrfeldt :koala:
Browse files

chore: use new defineOptions macro

parent e0509137
No related branches found
No related tags found
No related merge requests found
......@@ -76,6 +76,11 @@ import Pagination from '@/components/generic/Pagination.vue'
import PaginationRange from '@/components/generic/PaginationRange.vue'
import SectionTitle from '@/components/generic/SectionTitle.vue'
defineOptions({
compatConfig: { MODE: 3 },
ATTR_FALSE_VALUE: false,
})
const { t } = useI18n()
const store = useStore()
const page = ref(1)
......@@ -94,11 +99,3 @@ watchEffect(() => {
}
})
</script>
<script lang="ts">
export default {
compatConfig: {
MODE: 3,
},
}
</script>
......@@ -88,6 +88,12 @@ import { prettyDuration, usePretty } from '@/mixins/prettyDate'
import NoteEditorModal from './NoteEditorModal.vue'
import PlaylistModal from './PlaylistSelector.vue'
defineOptions({
compatConfig: { MODE: 3 },
inheritAttrs: false,
ATTR_FALSE_VALUE: false,
})
const props = defineProps<{
timeslot: TimeSlot
}>()
......@@ -129,12 +135,3 @@ function editPlaylist() {
playlistModal.value.open(props.timeslot.scheduleId, props.timeslot.id)
}
</script>
<script lang="ts">
export default {
inheritAttrs: false,
compatConfig: {
MODE: 3,
},
}
</script>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment