Skip to content

Commit 6b2725b

Browse files
authored
Merge pull request #71 from dnohashi/aws
Aws
2 parents 0429119 + 5d3c78b commit 6b2725b

File tree

9 files changed

+12
-146
lines changed

9 files changed

+12
-146
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
# PreVue 2
1+
# OverVue (Beta)
22

33
**WIP**
44

5+
Original Project: https://github.com/open-source-labs/PreVue
6+
57
#### Authors
68
```
79
Founders:

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/components/UploadImage.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@
3535
<q-card>
3636
<img :src="[imageExists ? `file:///${imagePath[0]}` : ' ']" />
3737

38-
<q-card-section>
38+
<!-- <q-card-section>
3939
<div class="text-h6 file-header">File Path</div>
4040
<div class="text-subtitle2 file-content">{{ imagePath[0] }}</div>
41-
</q-card-section>
41+
</q-card-section> -->
4242
</q-card>
4343
</div>
4444
</q-expansion-item>

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)