Update notifications.vue
This commit is contained in:
parent
0d02dd06de
commit
b89bf97c9a
|
@ -51,9 +51,9 @@ export default defineComponent({
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
async configure() {
|
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,
|
includingTypes: this.props.includingTypes,
|
||||||
}).$on('ok', async ({ includingTypes }) => {
|
}).then(async ({ includingTypes }) => {
|
||||||
this.props.includingTypes = includingTypes;
|
this.props.includingTypes = includingTypes;
|
||||||
this.save();
|
this.save();
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue