File tree Expand file tree Collapse file tree 1 file changed +13
-1
lines changed
app/components/SlidingPanel/components/AppControlPanel/components Expand file tree Collapse file tree 1 file changed +13
-1
lines changed Original file line number Diff line number Diff line change 19
19
col =" 1"
20
20
icon =" fa-toolbox"
21
21
name =" Plugins"
22
+ @tap =" openPlugins"
22
23
/>
23
24
<QuickAccessBigButton
24
25
col =" 2"
54
55
import { mapState } from ' vuex' ;
55
56
import QuickAccessBigButton from ' ./QuickAccessBigButton.vue' ;
56
57
import SettingsView from ' @/components/Settings/SettingsView' ;
58
+ import PluginsView from ' @/components/Settings/PluginsView' ;
57
59
58
60
export default {
59
61
data () {
60
62
return {
61
- settingsScreen: SettingsView
63
+ settingsScreen: SettingsView,
64
+ pluginsScreen: PluginsView,
62
65
}
63
66
},
64
67
95
98
},
96
99
toggleDebugMode () {
97
100
this .$store .dispatch (' ui/toggleDebugMode' );
101
+ },
102
+ openPlugins () {
103
+ this .$navigateTo (this .pluginsScreen , {
104
+ animated: true ,
105
+ transition: {
106
+ name: ' slideLeft' ,
107
+ duration: 300
108
+ }
109
+ });
98
110
}
99
111
}
100
112
};
You can’t perform that action at this time.
0 commit comments