smtp setting add encryption

This commit is contained in:
xiaomlove
2022-01-28 02:50:30 +08:00
parent 27ba9aec74
commit 8d6d9d8c15
18 changed files with 93 additions and 51 deletions
+7 -1
View File
@@ -4,4 +4,10 @@ import ElementPlus from 'element-plus'
import router from './router/index'
import 'element-plus/theme-chalk/index.css'
import './styles/common.scss'
createApp(App).use(ElementPlus).use(router).mount('#app')
import * as ElIcons from '@element-plus/icons-vue'
const app = createApp(App)
for (const name in ElIcons) {
app.component(name, ElIcons[name])
}
app.use(ElementPlus).use(router).mount('#app')