pleroma-fe/src/components/settings_modal/settings_modal.js

19 行
436 B
JavaScript
Raw 通常表示 履歴

import Modal from 'src/components/modal/modal.vue'
2020-05-03 23:36:12 +09:00
const SettingsModal = {
components: {
Modal,
SettingsModalContent: () => import('./settings_modal_content.vue')
2020-05-03 23:36:12 +09:00
},
computed: {
modalActivated () {
return this.$store.state.interface.settingsModalState !== 'hidden'
},
modalPeeked () {
return this.$store.state.interface.settingsModalState === 'minimized'
2020-05-03 23:36:12 +09:00
}
2020-05-25 09:43:55 +09:00
}
2020-05-03 23:36:12 +09:00
}
export default SettingsModal