File tree Expand file tree Collapse file tree 1 file changed +17
-3
lines changed
packages/@vue/cli-ui/src/views Expand file tree Collapse file tree 1 file changed +17
-3
lines changed Original file line number Diff line number Diff line change 57
57
</VueTab >
58
58
</StepWizard >
59
59
60
- <div class =" top-menu" >
60
+ <div class =" top-menu left" >
61
+ <VueButton
62
+ v-if =" projectCurrent"
63
+ :to =" { name: 'home' }"
64
+ class =" flat icon-button"
65
+ icon-left =" arrow_back"
66
+ />
67
+ </div >
68
+
69
+ <div class =" top-menu right" >
61
70
<VueButton
62
71
:to =" { name: 'about' }"
63
72
class =" flat icon-button"
93
102
import FOLDER_CURRENT from ' ../graphql/folderCurrent.gql'
94
103
import PROJECT_INIT_CREATION from ' ../graphql/projectInitCreation.gql'
95
104
import PROJECT_IMPORT from ' ../graphql/projectImport.gql'
105
+ import PROJECT_CURRENT from ' ../graphql/projectCurrent.gql'
96
106
97
107
export default {
98
108
name: ' ProjectSelect' ,
@@ -113,7 +123,8 @@ export default {
113
123
},
114
124
115
125
apollo: {
116
- folderCurrent: FOLDER_CURRENT
126
+ folderCurrent: FOLDER_CURRENT ,
127
+ projectCurrent: PROJECT_CURRENT
117
128
},
118
129
119
130
mounted () {
@@ -169,5 +180,8 @@ export default {
169
180
.top-menu
170
181
position fixed
171
182
top $padding-item
172
- right $padding-item
183
+ & .left
184
+ left $padding-item
185
+ & .right
186
+ right $padding-item
173
187
</style >
You can’t perform that action at this time.
0 commit comments