Skip to content

Commit 26591f2

Browse files
authored
Merge pull request #69 from dnohashi/master
Added inline style to right-click buttons - removed unnecessary components
2 parents 6810531 + 18512bc commit 26591f2

File tree

7 files changed

+7
-143
lines changed

7 files changed

+7
-143
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "prevue2",
33
"version": "0.0.1",
44
"description": "Vue Prototype DevTool",
5-
"productName": "PreVue 2.0",
5+
"productName": "OverVue",
66
"cordovaId": "org.cordova.quasar.app",
77
"author": "Drew Nguyen <[email protected]>",
88
"private": true,

src/components/ComponentDisplay.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,20 +20,20 @@
2020
<p>{{ componentData.componentName }}</p>
2121
</div>
2222
<ul class="component-children">
23-
<li># of children: {{ componentMap[componentData.componentName].children.length }}</li>
24-
<li>children: {{ componentMap[componentData.componentName].children }}</li>
23+
<!-- <li># of children: {{ componentMap[componentData.componentName].children.length }}</li>
24+
<li>children: {{ componentMap[componentData.componentName].children }}</li> -->
2525
<!-- <p v-for="child in childList" :key="childList.indexOf(child)"> {{ child.text }}</p> -->
2626
</ul>
2727
<q-menu context-menu>
2828
<q-list class="menu">
2929
<q-item clickable v-ripple v-close-popup @click="handleAddChild">
30-
<q-item-section>Add Children</q-item-section>
30+
<q-item-section style="color: white">Add Children</q-item-section>
3131
<q-item-section avatar>
3232
<q-icon color="primary" name="add" />
3333
</q-item-section>
3434
</q-item>
3535
<q-item clickable v-ripple v-close-popup auto-close>
36-
<q-item-section>Delete Children</q-item-section>
36+
<q-item-section style="color: pink">Delete Children</q-item-section>
3737
<q-item-section avatar>
3838
<q-icon color="primary" name="delete" />
3939
</q-item-section>

src/components/TopMenuBar.vue

Lines changed: 0 additions & 103 deletions
This file was deleted.

src/layouts/MyLayout.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</q-btn>
88
<q-toolbar-title>
99
<!-- <q-avatar></q-avatar> -->
10-
PreVue 2.0
10+
OverVue
1111
</q-toolbar-title>
1212
<OpenProjectComponent />
1313
<SaveProjectComponent />

src/pages/Page2.vue

Lines changed: 0 additions & 26 deletions
This file was deleted.

src/router/routes.js

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,6 @@ const routes = [
66
children: [
77
{ path: '', component: () => import('pages/Index.vue') }
88
]
9-
},
10-
{
11-
path: '/page2',
12-
component: () => import('layouts/MyLayout.vue'),
13-
children: [
14-
{ path: '', component: () => import('pages/Page2.vue') }
15-
]
169
}
1710
]
1811

0 commit comments

Comments
 (0)