File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 7
7
/node_modules
8
8
.eslintrc.js
9
9
babel.config.js
10
- /src /components /ComponentDisplay .vue
10
+ /src /components /Canvas .vue
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ Includes functionality to:
30
30
</template >
31
31
</q-input >
32
32
<Routes ></Routes >
33
- <UploadImage ></UploadImage >
33
+ <UploadMockup ></UploadMockup >
34
34
</div >
35
35
36
36
</template >
Original file line number Diff line number Diff line change 1
1
<!--
2
2
Description:
3
- Displays componentDisplay
3
+ Displays Canvas
4
4
Functionality includes: N/A
5
5
-->
6
6
Original file line number Diff line number Diff line change 2
2
import * as types from "./types" ;
3
3
4
4
const actions = {
5
- // Actions that primarily affect componentDisplay .vue //////
5
+ // Actions that primarily affect Canvas .vue //////
6
6
[ types . deleteActiveComponent ] : ( { state, commit } ) => {
7
7
if ( state . noteModalOpen === true ) {
8
8
return ;
@@ -130,7 +130,7 @@ const actions = {
130
130
state . pastedComponent
131
131
) ;
132
132
} ,
133
- // End of componentDisplay Section//////////////////////////////////
133
+ // End of Canvas Section//////////////////////////////////
134
134
135
135
// Actions that affect Routing //////////////////////////////////////
136
136
@@ -323,7 +323,7 @@ const actions = {
323
323
/*
324
324
[types.updateStartingPosition]: ({ commit }, payload) => {
325
325
// does the same as update component position
326
- // but needed to record the initial spot of the ."draggable-resizeable" in componentDisplay .vue
326
+ // but needed to record the initial spot of the ."draggable-resizeable" in Canvas .vue
327
327
// or else undo/redo won't work
328
328
commit(types.UPDATE_COMPONENT_POSITION, payload)
329
329
},
You can’t perform that action at this time.
0 commit comments