Skip to content

Commit 63bed1e

Browse files
alexdee2007rstoenescu
authored andcommitted
Remove now unnecessary "start()" method (quasarframework#1109)
1 parent 634e95d commit 63bed1e

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

dev/main.js

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,9 @@ Vue.use(Quasar, {
2121
plugins: Everything
2222
})
2323

24-
Quasar.start(() => {
25-
/* eslint-disable no-new */
26-
new Vue({
27-
el: '#q-app',
28-
router,
29-
render: h => h(App)
30-
})
24+
/* eslint-disable no-new */
25+
new Vue({
26+
el: '#q-app',
27+
router,
28+
render: h => h(App)
3129
})

0 commit comments

Comments
 (0)