mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
* Scroll to notification settings when opened (for mobile) * scroll to settings content when clicking on menu entry * Scroll to settings content on mobile and fix weird loading state * Add fail-safety * Fix linting
16 lines
264 B
Vue
16 lines
264 B
Vue
<template>
|
|
<delete-data />
|
|
</template>
|
|
|
|
<script>
|
|
import DeleteData from '~/components/DeleteData/DeleteData.vue'
|
|
import scrollToContent from './scroll-to-content.js'
|
|
|
|
export default {
|
|
mixins: [scrollToContent],
|
|
components: {
|
|
DeleteData,
|
|
},
|
|
}
|
|
</script>
|