Skip to content

Commit f894ad1

Browse files
committed
Drop down test
1 parent 00011b8 commit f894ad1

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<p align="center"><b>Prototyping Tool for Vue Developers</b></p>
88

9-
<p>OverVue is a prototyping tool that allows developers to <em>dynamically</em> create and visualize a Vue application, implementing a real-time intuitive <em>tree display</em> of component hierarchy and a live-generated <em>code preview</em>. The resulting boilerplate can be <em>exported</em> as a template for further development.</p>
9+
<p>OverVue is a prototyping tool that allows developers to dynamically create and visualize a Vue application, implementing a real-time intuitive tree display of component hierarchy and a live-generated code preview. The resulting boilerplate can be exported as a template for further development.</p>
1010

1111
<p>这个程序能帮你生成Vue 组件, 设置 routes , 也可以帮你显像Component Parent-Child组件树。你只要做一些小配置然后可以下载code boilerplate. 这样你就可以很方便简洁地生成Vue前台APP了!</p>
1212

@@ -22,7 +22,7 @@
2222
+ Live-generated tree view to aid in visualizing parent-child hierarchy
2323
+ Save projects and open previous projects
2424
+ Export full boilerplate code for a working frontend
25-
###### OverVue 2020 new features and fixes
25+
###### OverVue 2020 new features and fixes
2626
+ Undo/redo functionality
2727
+ Ability to nest HTML elements
2828
+ Ability to navigate into HTML elements from a selected Vue component
@@ -36,6 +36,10 @@
3636
+ Will now load route images along with project
3737
+ Windows compatibility for uploading mockup images.
3838

39+
#### Changelog
40+
<details><summary>OverVue 2.0</summary>
41+
</details>
42+
3943
#### How to use
4044
+ Opening the application will create by default a root App component and a root route called "HomeView"
4145
+ Upload a mockup from your filesystem if you'd like. Remove the mockup and choose a new one if needed.
@@ -111,7 +115,7 @@ To run electron app in dev mode
111115
```
112116
quasar dev -m electron
113117
```
114-
To build a new .dmg
118+
To build a new .dmg / windows .exe
115119
```
116120
quasar build -m electron
117121
```
@@ -124,7 +128,7 @@ Here are some features we're thinking about adding:
124128
+ Ability to place child components into HTML elements
125129
+ Integration with Storybook
126130
+ Removal of NPM Dependencies
127-
+ Ability to add a copy of an existing component from another route to a new route
131+
+ Ability to add a copy of an existing component from one route to another
128132
+ Fix the incorrect resizing of components when maximizing and minimizing while the compoenent is active.
129133

130134
#### Authors
@@ -137,6 +141,6 @@ Drew Nguyen @drewngyen
137141
Alexander Havas @LOLDragoon
138142
Keriann Lin @keliphan
139143
Allison Pratt @allisons11
140-
@JojuOlaode
144+
Joju Olaode @JojuOlaode
141145
```
142146
Inspired by [PreVue](https://github.com/open-source-labs/PreVue)

quasar.conf.js

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,7 @@ module.exports = function (ctx) {
158158
},
159159

160160
electron: {
161+
bundler:'builder',
161162
// bundler: 'builder', // or 'packager'
162163

163164
extendWebpack (cfg) {
@@ -181,7 +182,10 @@ module.exports = function (ctx) {
181182
builder: {
182183
// https://www.electron.build/configuration/configuration
183184

184-
// appId: 'quasar-example'
185+
appId: 'com.electron.OverVue',
186+
win:{
187+
target:'nsis'
188+
},
185189
}
186190
}
187191
}

0 commit comments

Comments
 (0)