Move default setting to child component

This commit is contained in:
zsxeee 2021-09-19 18:05:22 +08:00
parent 2fb3c40307
commit ffbc25722d
No known key found for this signature in database
GPG key ID: 895CFFFD8313B3B8
3 changed files with 10 additions and 2 deletions

View file

@ -66,5 +66,10 @@ export default {
components: {
HiddenInput,
},
mounted() {
if (typeof this.$parent.notification.smtpSecure === "undefined") {
this.$parent.notification.smtpSecure = false;
}
},
}
</script>