Update notifications.vue

This commit is contained in:
syuilo 2020-09-20 12:07:15 +09:00
parent 0d02dd06de
commit b89bf97c9a
1 changed files with 2 additions and 2 deletions

View File

@ -51,9 +51,9 @@ export default defineComponent({
methods: {
async configure() {
os.modal(await import('@/components/notification-setting-window.vue'), {
os.modal(await import('@/components/notification-setting-window.vue').then(x => x.default), {
includingTypes: this.props.includingTypes,
}).$on('ok', async ({ includingTypes }) => {
}).then(async ({ includingTypes }) => {
this.props.includingTypes = includingTypes;
this.save();
});