Skip to content

Commit 30a80d3

Browse files
authored
Merge pull request #33 from deanfchung/electron
removed electron required code
2 parents 2e43188 + f486554 commit 30a80d3

File tree

8 files changed

+204
-548
lines changed

8 files changed

+204
-548
lines changed

quasar.conf.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,15 @@ module.exports = function (ctx) {
8686
// analyze: true,
8787
// extractCSS: false,
8888
extendWebpack (cfg) {
89-
cfg.module.rules.push({
89+
//cfg.module.rules.push({
9090
// enforce: 'pre',
9191
// test: /\.(js|vue)$/,
9292
// loader: 'eslint-loader',
9393
// exclude: /node_modules/,
9494
// options: {
9595
// formatter: require('eslint').CLIEngine.getFormatter('stylish')
9696
// }
97-
})
97+
//})
9898
}
9999
},
100100

src/components/CreateComponent.vue

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<br />
55
<form v-on:submit.prevent="handleClick" v-on:click="resetActiveComponent">
66
<q-input
7-
standout="bg-secondary text-white"
7+
standout="secondary text-secondary"
88
bottom-slots
99
v-model="componentNameInputValue"
1010
label="Component Name"
@@ -14,11 +14,13 @@
1414
</q-input>
1515
</form>
1616
<div class="icon-container">
17-
<Icons @getClickedIcon="addToSelectedElementList" @activeElement="addToComponentElementList"/>
17+
<Icons class = 'icons' @getClickedIcon="addToSelectedElementList" @activeElement="addToComponentElementList"/>
1818
</div>
1919
<ParentMultiselect />
2020
<br />
21-
<q-btn id="add-component-btn" class="glossy" color="teal" label="Create Component" icon-right="add" @click="handleClick" :disabled="!componentNameInputValue" />
21+
22+
<q-btn id="add-component-btn" color="secondary" label="Create Component" @click="handleClick" :disabled="!componentNameInputValue" />
23+
2224
</div>
2325
</template>
2426

0 commit comments

Comments
 (0)