File tree Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Expand file tree Collapse file tree 2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " laravel-file-manager-element" ,
3
- "version" : " 2.5.1 " ,
3
+ "version" : " 2.5.2 " ,
4
4
"description" : " File manager for Laravel with Vue.js and Element Style" ,
5
5
"keywords" : [
6
6
" laravel" ,
Original file line number Diff line number Diff line change 7
7
<context-menu />
8
8
<modal v-if =" showModal" />
9
9
<template v-if =" windowsConfig === 1 " >
10
- <left-manager class =" col" manager =" left" />
10
+ <left-manager @attachFilesToEmail = " attachFilesToEmail " class =" col" manager =" left" />
11
11
</template >
12
12
<template v-else-if =" windowsConfig === 2 " >
13
13
<el-row style =" width :100% " >
14
14
<el-col :span =" 6" >
15
15
<folder-tree />
16
16
</el-col >
17
17
<el-col :span =" 18" >
18
- <left-manager manager =" left" />
18
+ <left-manager @attachFilesToEmail = " attachFilesToEmail " manager =" left" />
19
19
</el-col >
20
20
</el-row >
21
21
</template >
22
22
<template v-else-if =" windowsConfig === 3 " >
23
- <left-manager class =" col-12 col-sm-6"
23
+ <left-manager @attachFilesToEmail = " attachFilesToEmail " class =" col-12 col-sm-6"
24
24
manager =" left"
25
25
v-on:click.native =" selectManager('left')"
26
26
v-on:contextmenu.native =" selectManager('left')" >
27
27
</left-manager >
28
- <right-manager class =" col-12 col-sm-6"
28
+ <right-manager @attachFilesToEmail = " attachFilesToEmail " class =" col-12 col-sm-6"
29
29
manager =" right"
30
30
v-on:click.native =" selectManager('right')"
31
31
v-on:contextmenu.native =" selectManager('right')" >
@@ -222,6 +222,9 @@ export default {
222
222
this .$store .commit (' fm/setActiveManager' , managerName);
223
223
}
224
224
},
225
+ attachFilesToEmail (data ){
226
+ this .$emit (' attachFilesToEmail' , data);
227
+ }
225
228
},
226
229
};
227
230
</script >
You can’t perform that action at this time.
0 commit comments