ecinc-cloud-yoaemail 9.5.210 → 9.5.211
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +6 -1
- package/lib/ecyoaemail.common.js +2767 -35
- package/lib/ecyoaemail.umd.js +2767 -35
- package/lib/ecyoaemail.umd.min.js +50 -50
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -16,6 +16,10 @@ import EmailLeftMenu from './src/components/LeftMenu'
|
|
|
16
16
|
import EmailTbColumns from './src/components/tbColumns'
|
|
17
17
|
import EmailTbColumnsWatch from './src/components/tbColumnsWatch'
|
|
18
18
|
import EmailTxl from './src/components/txl'
|
|
19
|
+
|
|
20
|
+
// sendMail
|
|
21
|
+
import EmailSendMail from './src/sendMail/xieyoujian'
|
|
22
|
+
|
|
19
23
|
// 以数组的结构保存组件,便于遍历
|
|
20
24
|
const components = {
|
|
21
25
|
EmailIndex,
|
|
@@ -32,7 +36,8 @@ const components = {
|
|
|
32
36
|
EmailLeftMenu,
|
|
33
37
|
EmailTbColumns,
|
|
34
38
|
EmailTbColumnsWatch,
|
|
35
|
-
EmailTxl
|
|
39
|
+
EmailTxl,
|
|
40
|
+
EmailSendMail
|
|
36
41
|
}
|
|
37
42
|
// 定义 install 方法
|
|
38
43
|
const install = function(Vue) {
|